storeundecl_script2.js 599 B

12345678910111213
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. function test2() {
  6. x = 10;
  7. }
  8. try { test2(); } catch (e) { print(e); }
  9. Object.defineProperty(this, 'accessor', { configurable: true, get: function () { return false; } });
  10. try { test2(); } catch (e) { print(e); }