Hello, I am trying to create a structural search i...
# intellij
n
Hello, I am trying to create a structural search inspection for our Kotlin project. We are using Exposed and have a lot of calls to the
transaction { ..}
method. However the problem with that method is that it uses the “default” db and we have more than one. This can cause issues. So we want to gradually replace all such calls with
db.transaction {...}
. So I am trying and failing to create a structural search that will find invocations of the former and not the latter. Any help would be appreciated.