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

TokenFloatLiteral() public method

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

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

            BuildTokens(line, offset);
        }
TokenFloatLiteral