36e1e46016
Bug: chromium:902610 Change-Id: I4675e3089a09ee75aa81ba2958f30a17621a537e Reviewed-on: https://chromium-review.googlesource.com/c/1326029 Reviewed-by: Toon Verwaest <verwaest@chromium.org> Commit-Queue: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/master@{#57358}
12 lines
465 B
JavaScript
12 lines
465 B
JavaScript
// Copyright 2018 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.
|
|
|
|
assertThrows(() => {
|
|
// Make a function with 65535 args. This should throw a SyntaxError because -1
|
|
// is reserved for the "don't adapt arguments" sentinel.
|
|
var f_with_65535_args =
|
|
eval("(function(" + Array(65535).fill("x").join(",") + "){})");
|
|
f_with_65535_args();
|
|
}, SyntaxError);
|