default_undodefer.js 538 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. // Validating that function with default does not assert with ForceUndoDefer
  6. var bar = function () { }
  7. function foo(a = function () {} ) {
  8. print("Pass");
  9. }
  10. foo();