static S autoQuote(S s) {
  ret isIdentifier(s) || isInteger(s) ? s : quote(s);
}