Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da159d7 commit 0e689a9Copy full SHA for 0e689a9
1 file changed
java/ql/lib/semmle/code/java/Modifier.qll
@@ -43,7 +43,8 @@ abstract class Modifiable extends Element {
43
predicate isFinal() { this.hasModifier("final") }
44
45
/** Holds if this element has a `sealed` modifier. */
46
- predicate isSealed() { this.hasModifier("sealed") }
+ // TODO: `isSealed()` conflicts with `ClassOrInterface.isSealed()`. What name do we want to use here?
47
+ predicate isSealedKotlin() { this.hasModifier("sealed") }
48
49
/** Holds if this element has a `public` modifier or is implicitly public. */
50
predicate isPublic() { this.hasModifier("public") }
0 commit comments