(Object arg)
| 234 | public static final String factoryName = "create"; |
| 235 | protected static abstract class Factory { |
| 236 | protected abstract ASTree make0(Object arg) throws Exception; |
| 237 | protected ASTree make(Object arg) { |
| 238 | try { |
| 239 | return make0(arg); |