예제 #1
0
        public override CSharpSyntaxNode VisitNumber([NotNull] DonatelloParser.NumberContext context)
        {
            var numberText = context.GetText();
            var number     = int.Parse(numberText);

            return(LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(number)));
        }
 /// <summary>
 /// Exit a parse tree produced by <see cref="DonatelloParser.number"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitNumber([NotNull] DonatelloParser.NumberContext context)
 {
 }
 /// <summary>
 /// Visit a parse tree produced by <see cref="DonatelloParser.number"/>.
 /// <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 VisitNumber([NotNull] DonatelloParser.NumberContext context)
 {
     return(VisitChildren(context));
 }