コード例 #1
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="HemoParser.booleanLiteral"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitBooleanLiteral([NotNull] HemoParser.BooleanLiteralContext context)
 {
     return(VisitChildren(context));
 }
コード例 #2
0
ファイル: UnitTest1.cs プロジェクト: NickStrupat/Hemo
 public override Int32 VisitBooleanLiteral(HemoParser.BooleanLiteralContext context) => AddToLiterals(Boolean.Parse(context.GetChild(0).GetText()));