()
| 12 | } |
| 13 | public ClassBody body() { return (ClassBody)child(numChildren() - 1); } |
| 14 | public String toString() { |
| 15 | String parent = superClass(); |
| 16 | if (parent == null) |
| 17 | parent = "*"; |
| 18 | return "(class " + name() + " " + parent + " " + body() + ")"; |
| 19 | } |
| 20 | } |
nothing calls this directly
no test coverage detected