// returns null if no comment static S getJavaLineComment(S s) { L tok = javaTok(s); S x = last(tok); int i = x.indexOf("//"); ret i < 0 ? null : x.substring(i+2).trim(); }