(GlobalContext globalContext)
| 7 | private JSObject map; |
| 8 | |
| 9 | public Arguments(GlobalContext globalContext) { |
| 10 | super(globalContext); |
| 11 | setClassName("Arguments"); |
| 12 | this.map = new DynObject(globalContext); |
| 13 | } |
| 14 | |
| 15 | public void setParameterMap(JSObject map) { |
| 16 | this.map = map; |
nothing calls this directly
no test coverage detected