コード例 #1
0
ファイル: TreeBuilder.cs プロジェクト: sergbas/MyGrammar
 override public void ExitSingle_rule(Single_ruleContext ctx)
 {
     this.rule.setCondition(this.logicalExpressions.Pop());
     this.ruleSet.addRule(this.rule);
     this.rule = null;
 }
コード例 #2
0
ファイル: TreeBuilder.cs プロジェクト: sergbas/MyGrammar
 override public void EnterSingle_rule(Single_ruleContext ctx)
 {
     this.rule = new Rule();
 }