We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
inline_late
inline
1 parent 26c1b2f commit f90e9dbCopy full SHA for f90e9db
java/ql/lib/semmle/code/java/ConflictingAccess.qll
@@ -11,8 +11,9 @@ import Concurrency
11
* Holds if `t` is the type of a lock.
12
* Currently a crude test of the type name.
13
*/
14
+bindingset[t]
15
overlay[caller?]
-pragma[inline]
16
+pragma[inline_late]
17
predicate isLockType(Type t) { t.getName().matches("%Lock%") }
18
19
/**
@@ -211,8 +212,9 @@ class ExposedFieldAccess extends FieldAccess {
211
212
}
213
214
/** Holds if the location of `a` is strictly before the location of `b`. */
215
+bindingset[a, b]
216
217
218
predicate orderedLocations(Location a, Location b) {
219
a.getStartLine() < b.getStartLine()
220
or
0 commit comments