| 123456789101112131415161718192021222324252627282930313233343536 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function escape()
- {
- }
- function test0(){
- function bar0 (){
- }
- escape(bar0);
- (function(){
- //Snippets:newobjinlining3.ecs
- function v375952()
- {
- }
- function v375957()
- {
- v375952.prototype = {};
- }
- if (doit) {
- v375957();
- v375957();
- }
- //Snippet From Var
- })();
- };
- var doit = 0;
- // generate profile
- test0();
- doit = true;
- // run JITted code
- test0();
|