Skip to content

Commit 9dbbe5e

Browse files
author
Michal Medvecky
committed
eclipse check changes
1 parent 89c6628 commit 9dbbe5e

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/compiler/bytecode_dsl

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/compiler/bytecode_dsl/RootNodeCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ private String getNewScopeQualName(String name, CompilationScope scopeType) {
336336
}
337337
}
338338
if (!(EnumSet.of(CompilationScope.Function, AsyncFunction, Class).contains(scopeType) &&
339-
parent.scope.getUseOfName(ScopeEnvironment.mangle(parent.privateName, name)).contains(Scope.DefUse.GlobalExplicit))) {
339+
parent.scope.getUseOfName(ScopeEnvironment.mangle(parent.privateName, name)).contains(Scope.DefUse.GlobalExplicit))) {
340340
String base;
341341
if (EnumSet.of(CompilationScope.Function, AsyncFunction, CompilationScope.Lambda).contains(parent.scopeType)) {
342342
base = parent.qualName + ".<locals>";

0 commit comments

Comments
 (0)