MCPcopy Create free account
hub / github.com/dynjs/dynjs / JSON

Method JSON

src/main/java/org/dynjs/runtime/builtins/JSON.java:25–30  ·  view source on GitHub ↗
(GlobalContext globalContext)

Source from the content-addressed store, hash-verified

23public 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}

Callers

nothing calls this directly

Calls 2

setClassNameMethod · 0.65

Tested by

no test coverage detected