static bool containsDollarVars(S s) { L tok = javaTok(s); for (int i = 1; i < l(tok); i += 2) if (isDollarVar(tok.get(i))) true; false; }