static L codeTokensOnly(L tok) { new L l; for (int i = 1; i < tok.size(); i += 2) l.add(tok.get(i)); return l; }