Antlr.Runtime.Lexer.Skip C# (CSharp) Method

Skip() public method

* Instruct the lexer to skip creating a token for current lexer rule * and look for another token. nextToken() knows to keep looking when * a lexer rule finishes with token set to SKIP_TOKEN. Recall that * if token==null at end of any token rule, it creates one for you * and emits it. *
public Skip ( ) : void
return void
        public virtual void Skip()
        {
            state.token = Tokens.Skip;
        }