307308309310311312313314315316317
do { consumeWhiteSpaces(); switch (getChar()) { case '(': blankNode.getLexicalUnits().add( new ListToken(this, getContext())); break; case '<': if (step() == '=') { blankNode.getLexicalUnits().add(new Token("<=")); step();
419420421422423424425426427428429
do { consumeWhiteSpaces(); switch (getChar()) { case '(': listToken.getLexicalUnits().add( new ListToken(this, getContext())); break; case '<': if (step() == '=') { listToken.getLexicalUnits().add(new Token("<=")); step();
471472473474475476477478479480481
List<LexicalUnit> lexicalUnits = new ArrayList<LexicalUnit>(); do { consumeWhiteSpaces(); switch (getChar()) { case '(': lexicalUnits.add(new ListToken(this, context)); break; case '<': if (step() == '=') { lexicalUnits.add(new Token("<=")); step();