예제 #1
0
 public LexActionArgument(object val)
 {
     _val = val;
     _key = "";
     Type = LexActionArgumentType.Literal;
 }
예제 #2
0
 public LexActionArgument(Func <Token, object> func)
 {
     _val = func;
     _key = "";
     Type = LexActionArgumentType.Function;
 }
예제 #3
0
 public LexActionArgument(string val, bool self)
 {
     _val = val;
     _key = "";
     Type = LexActionArgumentType.Self;
 }