public VRML97Token ReadNextToken()
 {
     while (context.TokensCount == 0)
     {
         currentState = currentState.Tick();
     }
     return(context.Dequeue());
 }
 public VRML97Token ReadNextToken() {
     while (context.TokensCount == 0) {
         currentState = currentState.Tick();
     }
     return context.Dequeue();
 }
 public Vrml97Tokenizer(TextReader reader) {
     context = new TokenizerContext(reader, this);
     currentState = new InitialState(context);
 }
 public Vrml97Tokenizer(TextReader reader)
 {
     context      = new TokenizerContext(reader, this);
     currentState = new InitialState(context);
 }