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

            ClearPosition();
            return(position);
        }
示例#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;
        }
示例#3
0
 public ErrorEventArgs(string message, BufferPosition position)
 {
     Message  = message;
     Position = position;
 }
示例#4
0
 public IntToken(int value, string sourcePath, BufferPosition position)
     : base(LiteralTokenType.Int, sourcePath, position)
 {
     Value = value;
 }
示例#5
0
 public ShaderCodeToken(string shaderCode, string sourcePath, BufferPosition position)
     : base(TokenType.ShaderCode, sourcePath, position)
 {
     ShaderCode = shaderCode;
 }
示例#6
0
文件: Lexer.cs 项目: tgjones/weaver
 private void ClearPosition()
 {
     _position = new BufferPosition();
 }
示例#7
0
文件: Lexer.cs 项目: tgjones/weaver
 protected void StartToken()
 {
     _position = _buffer.Position;
 }
示例#8
0
 public FloatToken(float value, string sourcePath, BufferPosition position)
     : base(LiteralTokenType.Float, sourcePath, position)
 {
     Value = value;
 }
示例#9
0
 public IdentifierToken(string identifier, string sourcePath, BufferPosition position)
     : base(TokenType.Identifier, sourcePath, position)
 {
     Identifier = identifier;
 }
示例#10
0
 public LiteralToken(LiteralTokenType literalType, string sourcePath, BufferPosition position)
     : base(TokenType.Literal, sourcePath, position)
 {
     LiteralType = literalType;
 }
示例#11
0
 public StringToken(string value, string sourcePath, BufferPosition position)
     : base(LiteralTokenType.String, sourcePath, position)
 {
     Value = value;
 }
示例#12
0
文件: Token.cs 项目: tgjones/weaver
 public Token(TokenType type, string sourcePath, BufferPosition position)
 {
     Type = type;
     SourcePath = sourcePath;
     Position = position;
 }
示例#13
0
 private void ClearPosition()
 {
     _position = new BufferPosition();
 }
示例#14
0
 protected void StartToken()
 {
     _position = _buffer.Position;
 }
示例#15
0
 public ErrorEventArgs(string message, BufferPosition position)
 {
     Message = message;
     Position = position;
 }