示例#1
0
文件: Token.cs 项目: almeswe/alm
 public Token(TokenType TokenType, SourceContext Context, string Value = null)
 {
     this.Value     = Value;
     this.TokenType = TokenType;
     this.Context   = Context;
 }
示例#2
0
文件: Token.cs 项目: almeswe/alm
 public Token(TokenType TokenType, string Value = null)
 {
     this.Value     = Value;
     this.TokenType = TokenType;
     this.Context   = new SourceContext();
 }