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

Method createTemporaryVariable

src/main/java/org/dynjs/ir/Scope.java:135–141  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

133 }
134
135 public Variable createTemporaryVariable() {
136 Variable variable = new TemporaryVariable(temporaryVariablesIndex);
137
138 temporaryVariablesIndex++;
139
140 return variable;
141 }
142
143 public Variable createTemporaryVariableFor(LocalVariable local) {
144 Variable variable = new TemporaryLocalVariable(local.getName(), temporaryVariablesIndex);

Callers 4

visitMethod · 0.95
copyAndReturnValueMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected