File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1477
1477
<compile-flags >-off:aggressiveinttypespec</compile-flags >
1478
1478
</default >
1479
1479
</test >
1480
+ <test >
1481
+ <default >
1482
+ <files >test148.js</files >
1483
+ <compile-flags >-mic:1 -off:simplejit</compile-flags >
1484
+ </default >
1485
+ </test >
1480
1486
<test >
1481
1487
<default >
1482
1488
<files >IsIn_ArrayNoMissingValues.js</files >
Original file line number Diff line number Diff line change
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
+
6
+ function test0 ( ) {
7
+ var obj0 = { } ;
8
+ var func1 = function ( ) {
9
+ return 'caller' ;
10
+ } ;
11
+ var func3 = function ( ) {
12
+ } ;
13
+ obj0 . method1 = func1 ;
14
+ var ary = Array ( ) ;
15
+ var __loopvar1 = 9 ;
16
+ for ( ; ; ) {
17
+ if ( __loopvar1 > 9 ) {
18
+ break ;
19
+ }
20
+ __loopvar1 ++ ;
21
+ var uniqobj12 = { 13 : ( ( func3 . call ( obj0 . method1 ( ) , 'caller' ) ) , func1 ( ) ) } ;
22
+ }
23
+ '' + ary . slice ( ) ;
24
+ }
25
+ test0 ( ) ;
26
+ test0 ( ) ;
27
+ print ( "passed" ) ;
You can’t perform that action at this time.
0 commit comments