コード例 #1
0
ファイル: iroBaseVisitor.cs プロジェクト: kscarlett/iro4cli
 /// <summary>
 /// Visit a parse tree produced by <see cref="iroParser.attribute"/>.
 /// <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 VisitAttribute([NotNull] iroParser.AttributeContext context)
 {
     return(VisitChildren(context));
 }
コード例 #2
0
 /// <summary>
 /// Defines a variable based on this attribute definition.
 /// </summary>
 public override IroVariable VisitAttribute([NotNull] iroParser.AttributeContext context)
 {
     //Get the created variable.
     return(new IroAttribute(context.IDENTIFIER().GetText(), VisitDefinition(context.definition())));
 }
コード例 #3
0
 /// <summary>
 /// Enter a parse tree produced by <see cref="iroParser.attribute"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void EnterAttribute([NotNull] iroParser.AttributeContext context)
 {
 }