(GlobalContext globalContext)
| 23 | public class JSON extends DynObject { |
| 24 | |
| 25 | public JSON(GlobalContext globalContext) { |
| 26 | super(globalContext); |
| 27 | setClassName("JSON"); |
| 28 | defineNonEnumerableProperty(globalContext, "parse", new Parse(globalContext)); |
| 29 | defineNonEnumerableProperty(globalContext, "stringify", new Stringify(globalContext)); |
| 30 | } |
| 31 | |
| 32 | } |
nothing calls this directly
no test coverage detected