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

Method call

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

Source from the content-addressed store, hash-verified

28 }
29
30 @Override
31 public Object call(ExecutionContext context, Object self, Object... args) {
32 String uri = Types.toString( context, args[0] );
33
34 String result = URLCodec.decode(context, uri, URLCodec.URI_RESERVED_SET + "#" );
35
36 return result;
37 }
38
39 @Override
40 public void setFileName() {

Callers

nothing calls this directly

Calls 2

toStringMethod · 0.95
decodeMethod · 0.95

Tested by

no test coverage detected