Example #1
0
 /// <summary>
 /// Creates a clause with the span defined by the passed context
 /// </summary>
 /// <param name="context">Parser rule context</param>
 public BreakpointsNode(Z80TestParser.BreakpointContext context) : base(context)
 {
     BreakpointKeywordSpan = new TextSpan(context.BREAKPOINT());
     Expressions           = new List <ExpressionNode>();
 }