# HG changeset patch # User hannesw # Date 1463157495 -7200 # Node ID 133a3c6c906ecb2577a7ae0817ef74b6371fa94b # Parent b035d65df170f4ff7e6e558c93264aaf8048b9d9 8156714: Parsing issue with automatic semicolon insertion Reviewed-by: jlaskey, sundar diff -r b035d65df170 -r 133a3c6c906e src/jdk/nashorn/internal/parser/AbstractParser.java --- a/src/jdk/nashorn/internal/parser/AbstractParser.java Mon Feb 29 09:49:46 2016 +0100 +++ b/src/jdk/nashorn/internal/parser/AbstractParser.java Fri May 13 18:38:15 2016 +0200 @@ -200,8 +200,10 @@ * @return tokenType of next token. */ private TokenType nextToken() { - // Capture last token tokenType. - last = type; + // Capture last token type, but ignore comments (which are irrelevant for the purpose of newline detection). + if (type != COMMENT) { + last = type; + } if (type != EOF) { // Set up next token. diff -r b035d65df170 -r 133a3c6c906e src/jdk/nashorn/internal/parser/Parser.java --- a/src/jdk/nashorn/internal/parser/Parser.java Mon Feb 29 09:49:46 2016 +0100 +++ b/src/jdk/nashorn/internal/parser/Parser.java Fri May 13 18:38:15 2016 +0200 @@ -1135,7 +1135,7 @@ /** * ExpressionStatement : - * Expression ; // [lookahead ~( or function )] + * Expression ; // [lookahead ~({ or function )] * * See 12.4 * diff -r b035d65df170 -r 133a3c6c906e test/script/basic/JDK-8156714.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/script/basic/JDK-8156714.js Fri May 13 18:38:15 2016 +0200 @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * JDK-8156714: Parsing issue with automatic semicolon insertion + * + * @test + * @run + */ + +a = function() { +} + +/* */ function b() { +} + +c = function() { +} /* + +*/ function d() { +} + +try { + eval("x = function() {} /* */ function y() {}"); + throw new Error("Error expected"); +} catch (e) { + if (!(e instanceof SyntaxError)) { + throw new Error("Unexpected error: " + e); + } +}