Example #1
0
        protected BufferPosition TakePosition()
        {
            BufferPosition position = _position;

            ClearPosition();
            return(position);
        }
Example #2
0
        protected void ReportError(string message, Token token, params object[] args)
        {
            BufferPosition position = token.Position;

            if (Error != null && _lastErrorPosition != position)
            {
                Error(this, new ErrorEventArgs(string.Format(message, args), position));
            }
            _lastErrorPosition = position;
        }
Example #3
0
		public IntToken(int value, string sourcePath, BufferPosition position)
			: base(LiteralTokenType.Int, sourcePath, position)
		{
			Value = value;
		}
Example #4
0
 public ErrorEventArgs(string message, BufferPosition position)
 {
     Message  = message;
     Position = position;
 }
Example #5
0
		protected void ReportError(string message, Token token, params object[] args)
		{
			BufferPosition position = token.Position;
			if (Error != null && _lastErrorPosition != position)
				Error(this, new ErrorEventArgs(string.Format(message, args), position));
			_lastErrorPosition = position;
		}
Example #6
0
		public ErrorEventArgs(string message, BufferPosition position)
		{
			Message = message;
			Position = position;
		}
Example #7
0
		public Token(TokenType type, string sourcePath, BufferPosition position)
		{
			Type = type;
			SourcePath = sourcePath;
			Position = position;
		}
Example #8
0
		public IdentifierToken(string identifier, string sourcePath, BufferPosition position)
			: base(TokenType.Identifier, sourcePath, position)
		{
			Identifier = identifier;
		}
Example #9
0
 private void ClearPosition()
 {
     _position = new BufferPosition();
 }
Example #10
0
 protected void StartToken()
 {
     _position = _buffer.Position;
 }
Example #11
0
		public StringToken(string value, string sourcePath, BufferPosition position)
			: base(LiteralTokenType.String, sourcePath, position)
		{
			Value = value;
		}
Example #12
0
		private void ClearPosition()
		{
			_position = new BufferPosition();
		}
Example #13
0
		protected void StartToken()
		{
			_position = _buffer.Position;
		}
Example #14
0
		public FloatToken(float value, string sourcePath, BufferPosition position)
			: base(LiteralTokenType.Float, sourcePath, position)
		{
			Value = value;
		}
Example #15
0
		public LiteralToken(LiteralTokenType literalType, string sourcePath, BufferPosition position)
			: base(TokenType.Literal, sourcePath, position)
		{
			LiteralType = literalType;
		}