Exemplo n.º 1
0
 private TagArg(IEnumerable<Token<TokenType>> tokens)
 {
     _tokens = tokens;
     _str = null;
     _type = TagArgType.Tokens;
 }
Exemplo n.º 2
0
 private TagArg(string str)
 {
     _tokens = null;
     _str = str;
     _type = TagArgType.Result;
 }