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