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.
1 parent af672b4 commit 44e69e1Copy full SHA for 44e69e1
java/ql/lib/semmle/code/java/Modifier.qll
@@ -58,6 +58,9 @@ abstract class Modifiable extends Element {
58
/** Holds if this element has an `internal` modifier. */
59
predicate isInternal() { this.hasModifier("internal") }
60
61
+ /** Holds if this element has an `inline` modifier. */
62
+ predicate isInline() { this.hasModifier("inline") }
63
+
64
/** Holds if this element has a `volatile` modifier. */
65
predicate isVolatile() { this.hasModifier("volatile") }
66
0 commit comments