Boo.BooLangStudioSpecs.TokenIntegerLiteral.TokenIntegerLiteral C# (CSharp) Method

TokenIntegerLiteral() public method

public TokenIntegerLiteral ( ) : System
return System
        public TokenIntegerLiteral()
            : base()
        {
            //      0
            //      0123
            line = "1444";
            offset = 0;

            expectedTokenType = TokenType.Literal;
            expectedTokenColor = TokenColor.Number;
            expectedStartIndex = 0;
            expectedEndIndex = 3;

            BuildTokens(line, offset);
        }
TokenIntegerLiteral