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

Method call

src/main/java/org/dynjs/runtime/builtins/Print.java:29–33  ·  view source on GitHub ↗
(ExecutionContext context, Object self, Object... args)

Source from the content-addressed store, hash-verified

27 }
28
29 @Override
30 public Object call(ExecutionContext context, Object self, Object... args) {
31 context.getConfig().getOutputStream().println(Types.toString(context, args[0]));
32 return Types.UNDEFINED;
33 }
34
35 @Override
36 public void setFileName() {

Callers

nothing calls this directly

Calls 3

toStringMethod · 0.95
getConfigMethod · 0.65
getOutputStreamMethod · 0.45

Tested by

no test coverage detected