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

TokenRightParen() public method

public TokenRightParen ( ) : System
return System
        public TokenRightParen()
            : base()
        {
            //      0
            //      0
            line = ")";
            offset = 0;

            expectedTokenType = TokenType.Delimiter;
            expectedTokenColor = TokenColor.Text;
            expectedStartIndex = 0;
            expectedEndIndex = 0;

            BuildTokens(line, offset);
        }
TokenRightParen