box_inline_bailout.js 826 B

123456789101112131415161718192021222324252627282930313233343536
  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 escape()
  6. {
  7. }
  8. function test0(){
  9. function bar0 (){
  10. }
  11. escape(bar0);
  12. (function(){
  13. //Snippets:newobjinlining3.ecs
  14. function v375952()
  15. {
  16. }
  17. function v375957()
  18. {
  19. v375952.prototype = {};
  20. }
  21. if (doit) {
  22. v375957();
  23. v375957();
  24. }
  25. //Snippet From Var
  26. })();
  27. };
  28. var doit = 0;
  29. // generate profile
  30. test0();
  31. doit = true;
  32. // run JITted code
  33. test0();