8156714: Parsing issue with automatic semicolon insertion
Reviewed-by: jlaskey, sundar
This commit is contained in:
parent
96e6ae9274
commit
aa5b0068ac
@ -203,8 +203,10 @@ public abstract class AbstractParser {
|
||||
* @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.
|
||||
|
@ -1827,7 +1827,7 @@ public class Parser extends AbstractParser implements Loggable {
|
||||
|
||||
/**
|
||||
* ExpressionStatement :
|
||||
* Expression ; // [lookahead ~( or function )]
|
||||
* Expression ; // [lookahead ~({ or function )]
|
||||
*
|
||||
* See 12.4
|
||||
*
|
||||
|
50
nashorn/test/script/basic/JDK-8156714.js
Normal file
50
nashorn/test/script/basic/JDK-8156714.js
Normal file
@ -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);
|
||||
}
|
||||
}
|
@ -4864,7 +4864,7 @@
|
||||
"kind": "COMPILATION_UNIT",
|
||||
"sourceElements": [
|
||||
{
|
||||
"endPosition": "1242",
|
||||
"endPosition": "1222",
|
||||
"kind": "FUNCTION",
|
||||
"name": "Parser",
|
||||
"body": {
|
||||
@ -5419,7 +5419,7 @@
|
||||
},
|
||||
"startPosition": "1809"
|
||||
},
|
||||
"endPosition": "1973",
|
||||
"endPosition": "1901",
|
||||
"kind": "EXPRESSION_STATEMENT",
|
||||
"startPosition": "1809"
|
||||
},
|
||||
@ -6310,7 +6310,7 @@
|
||||
"startPosition": "1974"
|
||||
},
|
||||
{
|
||||
"endPosition": "3767",
|
||||
"endPosition": "3726",
|
||||
"kind": "FUNCTION",
|
||||
"name": "processFiles",
|
||||
"body": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user