Example #1
0
 internal LogicToken(LogicTokenType type, string variable)
 {
     this.type = type;
     this.variable = variable;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of <see cref="LogicToken"/>.
 /// </summary>
 /// <param name="type">A type of token.</param>
 /// <seealso cref="LogicTokenType"/>
 public LogicToken(LogicTokenType type)
     : this(type, string.Empty)
 {
 }