Exemple #1
0
 //<Text> ::= StringValue <TextPrime>
 public Text(ParserContext context, string v, TextPrime textPrime) : base(context)
 {
     this.StringValue = v;
     this.TextPrime   = textPrime;
     NodeType         = NodeTypes.StringValueTextPrime;
 }
Exemple #2
0
 //<Text> ::= <Identifiers> <TextPrime>
 public Text(ParserContext context, Value value, TextPrime textPrime) : base(context)
 {
     this.Value     = value;
     this.TextPrime = textPrime;
     NodeType       = NodeTypes.IdentifiersTextPrime;
 }