withref_delayobjscope.js 672 B

123456789101112131415161718192021
  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. var node = {};
  6. function _dmcn(type) {
  7. if (type) {
  8. function findUL(recurse) {
  9. with(node) {
  10. if (recurse)
  11. {
  12. findUL(false);
  13. }
  14. }
  15. }
  16. findUL(false)
  17. }
  18. }
  19. _dmcn(true);