예제 #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();
 }