Exemplo n.º 1
0
Arquivo: Token.cs Projeto: almeswe/alm
 public Token(TokenType TokenType, SourceContext Context, string Value = null)
 {
     this.Value     = Value;
     this.TokenType = TokenType;
     this.Context   = Context;
 }
Exemplo n.º 2
0
Arquivo: Token.cs Projeto: almeswe/alm
 public Token(TokenType TokenType, string Value = null)
 {
     this.Value     = Value;
     this.TokenType = TokenType;
     this.Context   = new SourceContext();
 }