static bool isDollarVar(S s) { ret startsWith(s, '$') && isJavaIdentifierAfter(s, 1); } ifclass Symbol static bool isDollarVar(Symbol s) { ret s != null && s.master.dollarVar; } endif