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 d966947 commit 3d6a2fcCopy full SHA for 3d6a2fc
src/main/java/org/luapp/language/handlers/ClassBodyHandler.java
@@ -10,6 +10,19 @@ public ClassBodyHandler() {
10
this.setTarget(luappParser.RULE_classbody);
11
}
12
13
+ public boolean isClassFunction(ParserRuleContext context){
14
+ return context.getRuleIndex() == luappParser.RULE_classfunction;
15
+ }
16
+
17
+ public boolean isClassGetSet(ParserRuleContext context){
18
+ return context.getRuleIndex() == luappParser.RULE_classgetset;
19
20
21
+ public boolean isClassConstructor(ParserRuleContext context){
22
+ return context.getRuleIndex() == luappParser.RULE_constructor;
23
24
25
26
@Override
27
public void onSetManager() {
28
0 commit comments