Fix/function with same name #34

Open
flecomte wants to merge 3 commits from fix/function_with_same_name into master
3 changed files with 7 additions and 9 deletions
Showing only changes of commit 551b860464 - Show all commits

View File

@@ -63,7 +63,6 @@ class Requester(
fun getQuery(path: String): Query = queries[path] ?: throw NoQueryDefined(path)
fun <A> inTransaction(block: Requester.() -> A?): A? = connection.inTransaction {
this@Requester.block()
}

View File

@@ -76,4 +76,3 @@ class Function(
return other.script != this.script
}
}