public override object VisitNewCallExpression([NotNull] DoshikParser.NewCallExpressionContext context)
        {
            SetWholeExpression(context);
            VisitChildren(context);
            _compilationContext.SetParsingAntlrContext(context);

            var node = new NewCallExpressionNode(context);

            var newCallCtx = context.newCall();

            var foundType = GetTypeNameVisitor.Apply(_compilationContext, newCallCtx.typeType());

            foundType.ThrowIfNotFound(_compilationContext);
            node.Type = foundType.DataType;

            node.Parameters.AddRange(GetMethodCallParameters(newCallCtx.methodCallParams()));

            Sequence.Sequence.Add(node);

            return(null);
        }
Beispiel #2
0
 /// <summary>
 /// Visit a parse tree produced by the <c>newCallExpression</c>
 /// labeled alternative in <see cref="DoshikParser.expression"/>.
 /// <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 VisitNewCallExpression([NotNull] DoshikParser.NewCallExpressionContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by the <c>newCallExpression</c>
 /// labeled alternative in <see cref="DoshikParser.expression"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitNewCallExpression([NotNull] DoshikParser.NewCallExpressionContext context)
 {
 }