コード例 #1
0
 /// <summary>
 /// Parses a multiple line comment.
 /// </summary>
 /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
 /// <returns>The ID of the token that was matched.</returns>
 protected virtual int ParseMultiLineComment(ITextBufferReader reader)
 {
     reader.Read();
     while (reader.Offset < reader.Length)
     {
         if (reader.Peek() == '*')
         {
             if (reader.Offset + 1 < reader.Length)
             {
                 if (reader.Peek(2) == '/')
                 {
                     reader.Read();
                     reader.Read();
                     break;
                 }
             }
             else
             {
                 reader.Read();
                 break;
             }
         }
         reader.Read();
     }
     return(SimpleTokenId.MultiLineCommentText);
 }
コード例 #2
0
        protected virtual int ParseIdentifier(ITextBufferReader reader, char ch)
        {
            // Get the entire word
            int startOffset = reader.Offset - 1;

            while (!reader.IsAtEnd && (char.IsLetterOrDigit(reader.Peek()) || reader.Peek() == '_'))
            {
                reader.Read();
            }
            return(ExecutionTargetSelectorTokenId.Identifier);
        }
コード例 #3
0
 /// <summary>
 /// Represents the method that will handle token matching callbacks.
 /// </summary>
 /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
 /// <param name="lexicalScope">The <see cref="ILexicalScope"/> that specifies the lexical scope to check.</param>
 /// <returns>A <see cref="MergableLexerResult"/> indicating the lexer result.</returns>
 private MergableLexerResult IsChildCodeBlockTransitionStateScopeStart(ITextBufferReader reader, ILexicalScope lexicalScope)
 {
     if (reader.Peek() == '<')
     {
         reader.Read();
         if (reader.Peek() == '%')
         {
             reader.Read();
             return(new MergableLexerResult(MatchType.ExactMatch, new LexicalScopeTokenData(lexicalScope, ParentTokenId.ChildCodeBlockStart)));
         }
         reader.ReadReverse();
     }
     return(MergableLexerResult.NoMatch);
 }
コード例 #4
0
 /// <summary>
 /// Parses a multiple line comment.
 /// </summary>
 /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
 /// <returns>The ID of the token that was matched.</returns>
 protected virtual int ParseMultiLineComment(ITextBufferReader reader)
 {
     while (reader.Offset + 2 < reader.Length)
     {
         if ((reader.Peek(1) == ']' &&
              reader.Peek(2) == ']'))
         {
             reader.Read();
             reader.Read();
             break;
         }
         reader.Read();
     }
     return(LuatTokenId.MultiLineComment);
 }
コード例 #5
0
        /// <summary>
        /// Parses an identifier.
        /// </summary>
        /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
        /// <param name="ch">The first character of the identifier.</param>
        /// <returns>The ID of the token that was matched.</returns>
        protected virtual int ParseIdentifier(ITextBufferReader reader, char ch)
        {
            // Get the entire word
            int startOffset = reader.Offset - 1;

            while (!reader.IsAtEnd)
            {
                // Accept namespaced identifiers
                if (reader.Peek(1) == ':' &&
                    reader.Peek(2) == ':' &&
                    char.IsLetterOrDigit(reader.Peek(3)))
                {
                    reader.Read();
                    reader.Read();
                    reader.Read();
                    continue;
                }

                char ch2 = reader.Read();

                // NOTE: This could be improved by supporting \u escape sequences
                if ((!char.IsLetterOrDigit(ch2)) && (ch2 != '_'))
                {
                    reader.ReadReverse();
                    break;
                }
            }

            // Determine if the word is a keyword
            if (Char.IsLetter(ch))
            {
                object value = keywords[reader.GetSubstring(startOffset, reader.Offset - startOffset)];

                if (value != null)
                {
                    return((int)value);
                }
                else
                {
                    return(LuatTokenId.Identifier);
                }
            }
            else
            {
                return(LuatTokenId.Identifier);
            }
        }
コード例 #6
0
 /// <summary>
 /// Parses a number.
 /// </summary>
 /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
 /// <param name="ch">The first character of the number.</param>
 /// <returns>The ID of the token that was matched.</returns>
 protected virtual int ParseNumber(ITextBufferReader reader, char ch)
 {
     while (Char.IsNumber(reader.Peek()))
     {
         reader.Read();
     }
     return(SimpleTokenId.Number);
 }
コード例 #7
0
 /// <summary>
 /// Parses a single line comment.
 /// </summary>
 /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
 /// <returns>The ID of the token that was matched.</returns>
 protected virtual int ParseSingleLineComment(ITextBufferReader reader)
 {
     while ((!reader.IsAtEnd) && (reader.Peek() != '\n'))
     {
         reader.Read();
     }
     return(LuatTokenId.SingleLineComment);
 }
コード例 #8
0
 protected virtual int ParseNumber(ITextBufferReader reader, char ch)
 {
     while (Char.IsNumber(reader.Peek()))
     {
         reader.Read();
     }
     if (reader.Peek() == '.')
     {
         reader.Read();  // Skip the dot
         while (Char.IsNumber(reader.Peek()))
         {
             reader.Read();
         }
         return(ExecutionTargetSelectorTokenId.Decimal);
     }
     return(ExecutionTargetSelectorTokenId.Integer);
 }
コード例 #9
0
        /// <summary>
        /// Parses a number.
        /// </summary>
        /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
        /// <param name="ch">The first character of the number.</param>
        /// <returns>The ID of the token that was matched.</returns>
        protected virtual int ParseNumber(ITextBufferReader reader, char ch)
        {
            Char c          = reader.Peek();
            bool bParsedDot = false;

            while (Char.IsNumber(c) || c == '.')
            {
                if (c == '.')
                {
                    // Only handle a single '.'
                    if (bParsedDot)
                    {
                        return(LuatTokenId.Number);
                    }

                    bParsedDot = true;
                }

                reader.Read();
                c = reader.Peek();
            }
            return(LuatTokenId.Number);
        }
コード例 #10
0
        /// <summary>
        /// Performs a lex to return the next <see cref="MergableLexerResult"/>
        /// from a <see cref="ITextBufferReader"/> and seeks past it if there is a match.
        /// </summary>
        /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
        /// <param name="lexicalState">The <see cref="ILexicalState"/> that specifies the current state.</param>
        /// <returns>A <see cref="MergableLexerResult"/> indicating the lexer result.</returns>
        public override MergableLexerResult GetNextToken(ITextBufferReader reader, ILexicalState lexicalState)
        {
            // Initialize
            int tokenId = ParentTokenId.Invalid;

            // Get the next character
            char ch = reader.Read();

            switch (lexicalState.Id)
            {
            case ParentLexicalStateId.Default: {
                // If the character is a letter or digit...
                if ((Char.IsLetter(ch) || (ch == '_')))
                {
                    // Parse the identifier
                    tokenId = this.ParseIdentifier(reader, ch);
                }
                else if (Char.IsWhiteSpace(ch))
                {
                    // Consume sequential whitespace
                    while (Char.IsWhiteSpace(reader.Peek()))
                    {
                        reader.Read();
                    }
                    tokenId = ParentTokenId.Whitespace;
                }
                else
                {
                    // Invalid
                    tokenId = ParentTokenId.Invalid;
                }
                break;
            }
            }

            if (tokenId != ParentTokenId.Invalid)
            {
                return(new MergableLexerResult(MatchType.ExactMatch, new LexicalStateTokenData(lexicalState, tokenId)));
            }
            else
            {
                reader.ReadReverse();
                return(MergableLexerResult.NoMatch);
            }
        }
コード例 #11
0
        /// <summary>
        /// Performs a lex to return the next <see cref="MergableLexerResult"/>
        /// from a <see cref="ITextBufferReader"/> and seeks past it if there is a match.
        /// </summary>
        /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
        /// <param name="lexicalState">The <see cref="ILexicalState"/> that specifies the current state.</param>
        /// <returns>A <see cref="MergableLexerResult"/> indicating the lexer result.</returns>
        public override MergableLexerResult GetNextToken(ITextBufferReader reader, ILexicalState lexicalState)
        {
            // Initialize
            int tokenId = SimpleTokenId.Invalid;

            // Get the next character
            char ch = reader.Read();

            // If the character is a letter or digit...
            if ((Char.IsLetter(ch) || (ch == '_')))
            {
                // Parse the identifier
                tokenId = this.ParseIdentifier(reader, ch);
            }
            else if ((ch != '\n') && (Char.IsWhiteSpace(ch)))
            {
                while ((reader.Peek() != '\n') && (Char.IsWhiteSpace(reader.Peek())))
                {
                    reader.Read();
                }
                tokenId = SimpleTokenId.Whitespace;
            }
            else
            {
                tokenId = SimpleTokenId.Invalid;
                switch (ch)
                {
                case ',':
                    tokenId = SimpleTokenId.Comma;
                    break;

                case '(':
                    tokenId = SimpleTokenId.OpenParenthesis;
                    break;

                case ')':
                    tokenId = SimpleTokenId.CloseParenthesis;
                    break;

                case ';':
                    tokenId = SimpleTokenId.SemiColon;
                    break;

                case '\n':
                    // Line terminator
                    tokenId = SimpleTokenId.Whitespace;
                    break;

                case '{':
                    tokenId = SimpleTokenId.OpenCurlyBrace;
                    break;

                case '}':
                    tokenId = SimpleTokenId.CloseCurlyBrace;
                    break;

                case '/':
                    tokenId = SimpleTokenId.Division;
                    switch (reader.Peek())
                    {
                    case '/':
                        // Parse a single-line comment
                        tokenId = this.ParseSingleLineComment(reader);
                        break;

                    case '*':
                        // Parse a multi-line comment
                        tokenId = this.ParseMultiLineComment(reader);
                        break;
                    }
                    break;

                case '=':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenId = SimpleTokenId.Equality;
                    }
                    else
                    {
                        tokenId = SimpleTokenId.Assignment;
                    }
                    break;

                case '!':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenId = SimpleTokenId.Inequality;
                    }
                    break;

                case '+':
                    tokenId = SimpleTokenId.Addition;
                    break;

                case '-':
                    tokenId = SimpleTokenId.Subtraction;
                    break;

                case '*':
                    tokenId = SimpleTokenId.Multiplication;
                    break;

                default:
                    if ((ch >= '0') && (ch <= '9'))
                    {
                        // Parse the number
                        tokenId = this.ParseNumber(reader, ch);
                    }
                    break;
                }
            }

            if (tokenId != SimpleTokenId.Invalid)
            {
                return(new MergableLexerResult(MatchType.ExactMatch, new LexicalStateTokenData(lexicalState, tokenId)));
            }
            else
            {
                reader.ReadReverse();
                return(MergableLexerResult.NoMatch);
            }
        }
コード例 #12
0
ファイル: LuatLexicalParser.cs プロジェクト: arsaccol/SLED
		/// <summary>
		/// Performs a lexical parse to return the next <see cref="ITokenLexicalParseData"/> 
		/// from a <see cref="ITextBufferReader"/> and seeks past it if there is a match.
		/// </summary>
		/// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
		/// <param name="lexicalState">The <see cref="ILexicalState"/> that specifies the current context.</param>
		/// <param name="lexicalParseData">Returns the next <see cref="ITokenLexicalParseData"/> from a <see cref="ITextBufferReader"/>.</param>
		/// <returns>A <see cref="MatchType"/> indicating the type of match that was made.</returns>
		public MatchType GetNextTokenLexicalParseData(ITextBufferReader reader, ILexicalState lexicalState, ref ITokenLexicalParseData lexicalParseData) {
			// Initialize
			int tokenID = LuatTokenId.Invalid;

            if ( reader.IsAtEnd )
            {
				lexicalParseData = new LexicalStateAndIDTokenLexicalParseData(lexicalState, (byte)LuatTokenId.DocumentEnd);
                return MatchType.ExactMatch;
            }

			// Get the next character
			char ch = reader.Read();

			// If the character is a letter or digit...
			if ((Char.IsLetter(ch) || (ch == '_'))) {
				// Parse the identifier
				tokenID = this.ParseIdentifier(reader, ch);
			}
			else if ((ch != '\n') && (Char.IsWhiteSpace(ch))) {
				while ((reader.Peek() != '\n') && (Char.IsWhiteSpace(reader.Peek()))) 
					reader.Read();
				tokenID = LuatTokenId.Whitespace;
			}
			else {
				tokenID = LuatTokenId.Invalid;
				switch (ch) {
					case ',':
						tokenID = LuatTokenId.Comma;
						break;
					case '(':
						tokenID = LuatTokenId.OpenParenthesis;
						break;
					case ')':
						tokenID = LuatTokenId.CloseParenthesis;
						break;
					case ';':
						tokenID = LuatTokenId.SemiColon;
                        break;
                    case ':':
                        tokenID = LuatTokenId.Colon;
                        break;
					case '\n':
                    case '\r':
						// Line terminator
						tokenID = LuatTokenId.LineTerminator;
						break;
					case '{':
						tokenID = LuatTokenId.OpenCurlyBrace;
						break;
					case '}':
						tokenID = LuatTokenId.CloseCurlyBrace;
						break;
                    case '\"':
                        tokenID = this.ParseString( reader, '\"' );
                        break;
                    case '\'':
                        tokenID = this.ParseString( reader, '\'' );
                        break;
					case '-':						
						if ( reader.Peek(1) != '-' ) 
                        {
                            tokenID = LuatTokenId.Subtraction;
                            break;
                        }

                        reader.Read();

						if ( reader.Peek(1) != '[' ||
                             reader.Peek(2) != '[' ) 
                        {
                            tokenID = this.ParseSingleLineComment(reader);
                        }
                        else
                        {
                            reader.Read();
                            reader.Read();
                            tokenID = this.ParseMultiLineComment( reader );
                        }
						break;
                    case '<':
                        if (reader.Peek() == '=') {
							reader.Read();
							tokenID = LuatTokenId.LessThanEqual;
						}
                        else
                        {
                            tokenID = LuatTokenId.LessThan;
                        }
                        break;
                    case '>':
                        if (reader.Peek() == '=') {
							reader.Read();
							tokenID = LuatTokenId.GreaterThanEqual;
						}
                        else
                        {
                            tokenID = LuatTokenId.GreaterThan;
                        }
                        break;
                    case '~':
                        if (reader.Peek() == '=') {
							reader.Read();
							tokenID = LuatTokenId.Inequality;
						}
                        break;
					case '=':
						if (reader.Peek() == '=') {
							reader.Read();
							tokenID = LuatTokenId.Equality;
						}
						else
                        {
							tokenID = LuatTokenId.Assignment;
                        }
						break;
					case '!':
						if (reader.Peek() == '=') {
							reader.Read();
							tokenID = LuatTokenId.Inequality;
						}
						break;
					case '+':
						tokenID = LuatTokenId.Addition;
						break;
                    case '/':
                        tokenID = LuatTokenId.Division;
                        break;
					case '*':
						tokenID = LuatTokenId.Multiplication;
                        break;
                    case '^':
                        tokenID = LuatTokenId.Hat;
                        break;
                    case '#':
                        tokenID = LuatTokenId.Hash;
                        break;
                    case '%':
                        tokenID = LuatTokenId.Modulus;
                        break;
                    case '.':
                        tokenID = LuatTokenId.Dot;
                        
                        if (reader.Peek() == '.')
                        {
                            reader.Read();
                            tokenID = LuatTokenId.DoubleDot;
                        }
                        
                        if (reader.Peek() == '.')
                        {
                            reader.Read();
                            tokenID = LuatTokenId.TripleDot;
                        }

                        break;
                    case '[':
                        tokenID = LuatTokenId.OpenSquareBracket;
                        break;
                    case ']':
                        tokenID = LuatTokenId.CloseSquareBracket;
                        break;
					default:
						if ((ch >= '0') && (ch <= '9')) {
							// Parse the number
							tokenID = this.ParseNumber(reader, ch);
						}
						break;
				}
			}

			if (tokenID != LuatTokenId.Invalid) {
				lexicalParseData = new LexicalStateAndIDTokenLexicalParseData(lexicalState, (byte)tokenID);
				return MatchType.ExactMatch;
			}
			else {
				reader.ReadReverse();
				return MatchType.NoMatch;
			}
		}
コード例 #13
0
ファイル: LuatLexicalParser.cs プロジェクト: arsaccol/SLED
		/// <summary>
		/// Parses a single line comment.
		/// </summary>
		/// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
		/// <returns>The ID of the token that was matched.</returns>
		protected virtual int ParseSingleLineComment(ITextBufferReader reader) {
			while ((!reader.IsAtEnd) && (reader.Peek() != '\n'))
				reader.Read();
			return LuatTokenId.SingleLineComment;
		}
コード例 #14
0
ファイル: LuatLexicalParser.cs プロジェクト: arsaccol/SLED
		/// <summary>
		/// Parses a number.
		/// </summary>
		/// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
		/// <param name="ch">The first character of the number.</param>
		/// <returns>The ID of the token that was matched.</returns>
		protected virtual int ParseNumber(ITextBufferReader reader, char ch) {
            Char c = reader.Peek();
            bool bParsedDot = false;
            while (Char.IsNumber(c) || c == '.')
            {
                if (c == '.')
                {
                    // Only handle a single '.'
                    if (bParsedDot)
                    {
                        return LuatTokenId.Number;
                    }

                    bParsedDot = true;
                }

                reader.Read();
                c = reader.Peek();
            }
			return LuatTokenId.Number;
		}
コード例 #15
0
ファイル: LuatLexicalParser.cs プロジェクト: arsaccol/SLED
		/// <summary>
		/// Parses a multiple line comment.
		/// </summary>
		/// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
		/// <returns>The ID of the token that was matched.</returns>
		protected virtual int ParseMultiLineComment(ITextBufferReader reader) {
			while (reader.Offset + 2 < reader.Length) {
				if ( ( reader.Peek(1) == ']' &&
                       reader.Peek(2) == ']' ) )
                {
					reader.Read();
					reader.Read();
                    break;
				}
				reader.Read();
			}
			return LuatTokenId.MultiLineComment;
		}
コード例 #16
0
ファイル: LuatLexicalParser.cs プロジェクト: arsaccol/SLED
		/// <summary>
		/// Parses an identifier.
		/// </summary>
		/// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
		/// <param name="ch">The first character of the identifier.</param>
		/// <returns>The ID of the token that was matched.</returns>
		protected virtual int ParseIdentifier(ITextBufferReader reader, char ch) {
			// Get the entire word
			int startOffset = reader.Offset - 1;
			while (!reader.IsAtEnd) {
                // Accept namespaced identifiers
                if ( reader.Peek( 1 ) == ':' &&
                     reader.Peek( 2 ) == ':' &&
                     char.IsLetterOrDigit( reader.Peek( 3 ) ) )
                {
                    reader.Read();
                    reader.Read();
                    reader.Read();
                    continue;
                }

                char ch2 = reader.Read();

				// NOTE: This could be improved by supporting \u escape sequences
				if ((!char.IsLetterOrDigit(ch2)) && (ch2 != '_')) {
					reader.ReadReverse();
					break;
				}
			}

			// Determine if the word is a keyword
			if (Char.IsLetter(ch)) {
				object value = keywords[reader.GetSubstring(startOffset, reader.Offset - startOffset)];

				if (value != null)
					return (int)value;
				else
					return LuatTokenId.Identifier;
			}
			else
				return LuatTokenId.Identifier;
		}
コード例 #17
0
        /// <summary>
        /// Performs a lexical parse to return the next <see cref="ITokenLexicalParseData"/>
        /// from a <see cref="ITextBufferReader"/> and seeks past it if there is a match.
        /// </summary>
        /// <param name="reader">An <see cref="ITextBufferReader"/> that is reading a text source.</param>
        /// <param name="lexicalState">The <see cref="ILexicalState"/> that specifies the current context.</param>
        /// <param name="lexicalParseData">Returns the next <see cref="ITokenLexicalParseData"/> from a <see cref="ITextBufferReader"/>.</param>
        /// <returns>A <see cref="MatchType"/> indicating the type of match that was made.</returns>
        public MatchType GetNextTokenLexicalParseData(ITextBufferReader reader, ILexicalState lexicalState, ref ITokenLexicalParseData lexicalParseData)
        {
            // Initialize
            int tokenID = LuatTokenId.Invalid;

            if (reader.IsAtEnd)
            {
                lexicalParseData = new LexicalStateAndIDTokenLexicalParseData(lexicalState, (byte)LuatTokenId.DocumentEnd);
                return(MatchType.ExactMatch);
            }

            // Get the next character
            char ch = reader.Read();

            // If the character is a letter or digit...
            if ((Char.IsLetter(ch) || (ch == '_')))
            {
                // Parse the identifier
                tokenID = this.ParseIdentifier(reader, ch);
            }
            else if ((ch != '\n') && (Char.IsWhiteSpace(ch)))
            {
                while ((reader.Peek() != '\n') && (Char.IsWhiteSpace(reader.Peek())))
                {
                    reader.Read();
                }
                tokenID = LuatTokenId.Whitespace;
            }
            else
            {
                tokenID = LuatTokenId.Invalid;
                switch (ch)
                {
                case ',':
                    tokenID = LuatTokenId.Comma;
                    break;

                case '(':
                    tokenID = LuatTokenId.OpenParenthesis;
                    break;

                case ')':
                    tokenID = LuatTokenId.CloseParenthesis;
                    break;

                case ';':
                    tokenID = LuatTokenId.SemiColon;
                    break;

                case ':':
                    tokenID = LuatTokenId.Colon;
                    break;

                case '\n':
                case '\r':
                    // Line terminator
                    tokenID = LuatTokenId.LineTerminator;
                    break;

                case '{':
                    tokenID = LuatTokenId.OpenCurlyBrace;
                    break;

                case '}':
                    tokenID = LuatTokenId.CloseCurlyBrace;
                    break;

                case '\"':
                    tokenID = this.ParseString(reader, '\"');
                    break;

                case '\'':
                    tokenID = this.ParseString(reader, '\'');
                    break;

                case '-':
                    if (reader.Peek(1) != '-')
                    {
                        tokenID = LuatTokenId.Subtraction;
                        break;
                    }

                    reader.Read();

                    if (reader.Peek(1) != '[' ||
                        reader.Peek(2) != '[')
                    {
                        tokenID = this.ParseSingleLineComment(reader);
                    }
                    else
                    {
                        reader.Read();
                        reader.Read();
                        tokenID = this.ParseMultiLineComment(reader);
                    }
                    break;

                case '<':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.LessThanEqual;
                    }
                    else
                    {
                        tokenID = LuatTokenId.LessThan;
                    }
                    break;

                case '>':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.GreaterThanEqual;
                    }
                    else
                    {
                        tokenID = LuatTokenId.GreaterThan;
                    }
                    break;

                case '~':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.Inequality;
                    }
                    break;

                case '=':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.Equality;
                    }
                    else
                    {
                        tokenID = LuatTokenId.Assignment;
                    }
                    break;

                case '!':
                    if (reader.Peek() == '=')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.Inequality;
                    }
                    break;

                case '+':
                    tokenID = LuatTokenId.Addition;
                    break;

                case '/':
                    tokenID = LuatTokenId.Division;
                    break;

                case '*':
                    tokenID = LuatTokenId.Multiplication;
                    break;

                case '^':
                    tokenID = LuatTokenId.Hat;
                    break;

                case '#':
                    tokenID = LuatTokenId.Hash;
                    break;

                case '%':
                    tokenID = LuatTokenId.Modulus;
                    break;

                case '.':
                    tokenID = LuatTokenId.Dot;

                    if (reader.Peek() == '.')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.DoubleDot;
                    }

                    if (reader.Peek() == '.')
                    {
                        reader.Read();
                        tokenID = LuatTokenId.TripleDot;
                    }

                    break;

                case '[':
                    tokenID = LuatTokenId.OpenSquareBracket;
                    break;

                case ']':
                    tokenID = LuatTokenId.CloseSquareBracket;
                    break;

                default:
                    if ((ch >= '0') && (ch <= '9'))
                    {
                        // Parse the number
                        tokenID = this.ParseNumber(reader, ch);
                    }
                    break;
                }
            }

            if (tokenID != LuatTokenId.Invalid)
            {
                lexicalParseData = new LexicalStateAndIDTokenLexicalParseData(lexicalState, (byte)tokenID);
                return(MatchType.ExactMatch);
            }
            else
            {
                reader.ReadReverse();
                return(MatchType.NoMatch);
            }
        }