| 1234567891011121314151617181920212223 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function test0(){
- var func0 = function(argArr2){
- if((check ? (argArr2.pop()) : WScript.Echo("false"))) {
- }
- }
- var check = true;
- func0([1]); // func0 will be inlined while jitting test0()
- check = false;
- func0(1); // func0 will be inlined while jitting test0()
- };
- // generate profile
- test0();
- // Run Simple JIT
- test0();
|