File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 496
496
<compile-flags >-force:deferparse -parserstatecache -useparserstatecache</compile-flags >
497
497
</default >
498
498
</test >
499
+ <test >
500
+ <default >
501
+ <files >skipping_nested_deferred_incorrect_function_id.js</files >
502
+ <tags >exclude_jshost</tags >
503
+ <compile-flags >-force:deferparse -parserstatecache -useparserstatecache</compile-flags >
504
+ </default >
505
+ </test >
499
506
<test >
500
507
<default >
501
508
<files >withSplitScope.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
+ function a ( b = function c ( ) { } ) { return ( ) => { return 6 ; } } ;
8
+ [ 0 ] . reduce ( function d ( ) { } , 0 ) ;
9
+ a ( ) ( ) ;
10
+ }
11
+ test0 ( ) ;
12
+
13
+ console . log ( "pass" ) ;
You can’t perform that action at this time.
0 commit comments