aboutsummaryrefslogtreecommitdiff
path: root/src/jdk/nashorn/tools/Shell.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jdk/nashorn/tools/Shell.java')
-rw-r--r--src/jdk/nashorn/tools/Shell.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jdk/nashorn/tools/Shell.java b/src/jdk/nashorn/tools/Shell.java
index 2c8f7951..58ab97c1 100644
--- a/src/jdk/nashorn/tools/Shell.java
+++ b/src/jdk/nashorn/tools/Shell.java
@@ -246,7 +246,7 @@ public class Shell {
// For each file on the command line.
for (final String fileName : files) {
- final FunctionNode functionNode = new Parser(env, sourceFor(fileName, new File(fileName)), errors, env._strict, FunctionNode.FIRST_FUNCTION_ID, 0, context.getLogger(Parser.class)).parse();
+ final FunctionNode functionNode = new Parser(env, sourceFor(fileName, new File(fileName)), errors, env._strict, 0, context.getLogger(Parser.class)).parse();
if (errors.getNumberOfErrors() != 0) {
return COMPILATION_ERROR;