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

Method acquireTemporaryVariable

src/main/java/org/dynjs/ir/Scope.java:129–133  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

127
128 // FIXME: Do I care about all the boxing here of index?
129 public Variable acquireTemporaryVariable(int index) {
130 Variable variable = temporaryVariables.get(index);
131
132 return variable == null ? createTemporaryVariable() : variable;
133 }
134
135 public Variable createTemporaryVariable() {
136 Variable variable = new TemporaryVariable(temporaryVariablesIndex);

Callers

nothing calls this directly

Calls 2

getMethod · 0.65

Tested by

no test coverage detected