Beispiel #1
0
 /* (non-Javadoc)
  * @see parser.CBaseElement#GetNext()
  */
 @Override
 protected CBaseToken GetNext() {
   CBaseToken tok = super.GetNext();
   while (tok != null && tok.IsWhiteSpace()) {
     tok = super.GetNext();
   }
   return tok;
 }
Beispiel #2
0
 protected void StepNext() {
   CBaseToken tok = super.GetNext();
   while (tok != null && tok.IsWhiteSpace()) {
     tok = super.GetNext();
   }
 }