示例#1
0
 public void EnterBounds(BASICParser.BoundsContext context)
 {
     currentLineDim.arrayName = currentNumericArrayElementName;
 }
示例#2
0
 public void ExitBounds(BASICParser.BoundsContext context)
 {
     currentLineDim.bounds = currentNumericExpression.Pop();
 }
示例#3
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="BASICParser.bounds"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitBounds([NotNull] BASICParser.BoundsContext context)
 {
 }