예제 #1
0
		public NumberCoreToken (Location location, double value) : base(location, TokenType.Number)
		{
			Value = value;
		}
예제 #2
0
		public CoreToken (Location location, TokenType type)
		{			
			Location = location;
			Type = type;
		}
예제 #3
0
		public IdentifierCoreToken (Location location, string id) : base(location, TokenType.Identifier)
		{
			Id = id;
		}