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

WhenParsingTheEndOfAMlCommentRegion() public method

public WhenParsingTheEndOfAMlCommentRegion ( ) : System
return System
        public WhenParsingTheEndOfAMlCommentRegion()
            : base()
        {
            //      012345678901234
            line = "the end */ ";
            offset = 0;
            state = 13;
            scanner.SetSource(line, offset);

            commentCloseToken = new TokenInfo();
            resultOne = scanner.ScanTokenAndProvideInfoAboutIt(commentCloseToken, ref state);

            betweenRunCurrentIndex = lexer.CurrentIndex;
            remainingLine = lexer.RemainingLine;

            whitespaceToken = new TokenInfo();
            scanner.ScanTokenAndProvideInfoAboutIt(whitespaceToken, ref state);
        }