We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9edf983 commit 5addcb6Copy full SHA for 5addcb6
graal-js/src/com.oracle.js.parser/src/com/oracle/js/parser/ir/Scope.java
@@ -736,6 +736,8 @@ private String getScopeKindName() {
736
return "Global";
737
} else if (isModuleScope()) {
738
return "Module";
739
+ } else if (isEvalScope()) {
740
+ return "Eval";
741
} else if (isFunctionBodyScope()) {
742
return "Var";
743
} else if (isFunctionParameterScope()) {
@@ -748,8 +750,6 @@ private String getScopeKindName() {
748
750
return "Class";
749
751
} else if (isClassBodyScope()) {
752
return "Private";
- } else if (isEvalScope()) {
- return "Eval";
753
}
754
return "";
755
0 commit comments