Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ir/passes/CompilerPass.java
Original file line number Diff line number Diff line change
@@ -109,7 +109,7 @@ private Object makeSureDependencyHasRunOnce(Class<? extends CompilerPass> passCl
Object data = pass.previouslyRun(scope);

if (data == null) {
data = pass.run(scope, childScope);
data = pass.run(scope, false, childScope);
} else {
for (CompilerPassListener listener: scope.getManager().getListeners()) {
listener.alreadyExecuted(pass, scope, data, childScope);

0 comments on commit a7e6f8b

Please sign in to comment.