| 123456789101112131415161718192021222324 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js");
- var tests = [
- {
- name: "OS4497597: ScopeInfo::FromScope() should increment scope symbol count to accomodate 'new.target'",
- body: function () {
- (function (){
- function f() {}
- eval("");
- () =>new.target;
- })();
- // Repro:
- // ASSERTION : (jscript\core\lib\Runtime\ByteCode\ScopeInfo.h, line 68)
- // Failure: (i >= 0 && i < symbolCount)
- }
- },
- ];
- testRunner.runTests(tests, { verbose: WScript.Arguments[0] != "summary" });
|