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

Method getFileName

src/main/java/org/dynjs/runtime/AbstractCode.java:63–72  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

61 }
62
63 public String getFileName() {
64 String name = null;
65 if (this.block.getPosition() != null) {
66 name = this.block.getPosition().getFileName();
67 }
68 if (name == null) {
69 name = "<eval>";
70 }
71 return name;
72 }
73
74}

Callers

nothing calls this directly

Calls 2

getPositionMethod · 0.65
getFileNameMethod · 0.65

Tested by

no test coverage detected