static L tok_classBody(LS tok) { ret tok_classBody(tok, 0); } static LS tok_classBody(LS tok, int i) { i = indexOf(tok, "{", i); if (i < 0) null; ret subList(tok, i+1, findEndOfBlock(tok, i)-1); }