(QuickJSContext ctx)
| 14 | private final Parser parser; |
| 15 | |
| 16 | public Function(QuickJSContext ctx) { |
| 17 | this.parser = new Parser(); |
| 18 | this.ctx = ctx; |
| 19 | setProperty(); |
| 20 | } |
| 21 | |
| 22 | private void setProperty() { |
| 23 | for (Method method : getClass().getMethods()) { |
nothing calls this directly
no test coverage detected