コード例 #1
0
 public override DomainId <IAstNode> VisitBooleanLiteral(QlParser.BooleanLiteralContext context)
 {
     return(m_astFactory.CreateBooleanLiteral(context.GetText()));
 }
コード例 #2
0
ファイル: BuildAstVisitor.cs プロジェクト: njtromp/endless-ql
 public override Reference <IAstNode> VisitBooleanLiteral(QLParser.BooleanLiteralContext context)
 {
     return(m_astFactory.CreateBooleanLiteral(context.GetText()));
 }