dc3a90be6c
Reverting https://chromium-review.googlesource.com/c/v8/v8/+/1741660 This fixed one bug but caused a lot of others and on balance I think reverting it is the lesser evil. This also fixed generator-relocation.js because (function*(){}).constructor is the function constructor and we try to set a breakpoint on line 3. Bug: chromium:109362, chromium:1028689 Fixes: v8:9721 Change-Id: I1bfe6ec57ce77ea7292df91266311f5c0194947e Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1940259 Commit-Queue: Peter Marshall <petermarshall@chromium.org> Reviewed-by: Yang Guo <yangguo@chromium.org> Cr-Commit-Position: refs/heads/master@{#65232}
61 lines
1.1 KiB
JavaScript
61 lines
1.1 KiB
JavaScript
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
|
|
function test(expectation, f) {
|
|
var stack;
|
|
try {
|
|
f();
|
|
} catch (e) {
|
|
stack = e.stack;
|
|
}
|
|
assertTrue(stack.indexOf("at eval (evaltest:" + expectation + ")") > 0);
|
|
}
|
|
|
|
/*
|
|
(function(
|
|
) {
|
|
1 + reference_error //@ sourceURL=evaltest
|
|
})
|
|
*/
|
|
test("3:5", new Function(
|
|
'1 + reference_error //@ sourceURL=evaltest'));
|
|
/*
|
|
(function(x
|
|
) {
|
|
|
|
1 + reference_error //@ sourceURL=evaltest
|
|
})
|
|
*/
|
|
test("4:6", new Function(
|
|
'x', '\n 1 + reference_error //@ sourceURL=evaltest'));
|
|
/*
|
|
(function(x
|
|
|
|
,z//
|
|
,y
|
|
) {
|
|
|
|
1 + reference_error //@ sourceURL=evaltest
|
|
})
|
|
*/
|
|
test("7:6", new Function(
|
|
'x\n\n', "z//\n", "y", '\n 1 + reference_error //@ sourceURL=evaltest'));
|
|
/*
|
|
(function(x/\*,z//
|
|
,y*\/
|
|
) {
|
|
1 + reference_error //@ sourceURL=evaltest
|
|
})
|
|
*/
|
|
test("4:5", new Function(
|
|
'x/*', "z//\n", "y*/", '1 + reference_error //@ sourceURL=evaltest'));
|
|
/*
|
|
(function () {
|
|
1 + reference_error //@ sourceURL=evaltest5
|
|
})
|
|
*/
|
|
test("2:6", eval(
|
|
'(function () {\n 1 + reference_error //@ sourceURL=evaltest\n})'));
|