| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //-------------------------------------------------------------------------------------------------------
- // 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: "Object literal shorthand syntax with symbol lookup",
- body: function () {
- (function () {
- let a = 1;
- {
- let a = 2;
- var m = {a};
- assert.areEqual(m.a, 2, "Name node in object literal shorthand is binding correctly with inner block");
- }
- })();
- {
- let a2 = 1;
- ({a2} = {a2:2});
- assert.areEqual(a2, 2, "Destructuring object pattern : Name node in object literal shorthand is binding correctly with inner block");
- }
- {
- // Object literal shorthand - referenced in different scopoe works correctly.
- { d; }
- {
- { { d;} };
- var c = {d};
- }
- {
- var d = [];
- }
- }
- }
- }
- ];
- testRunner.runTests(tests, { verbose: WScript.Arguments[0] != "summary" });
|