| 1234567891011121314151617181920 |
- //-------------------------------------------------------------------------------------------------------
- // 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(i)
- {
- try{
- for (var j = 0; j < 20010; j++) {
- if (j > 20000)
- return 'j ' + i + ' j in the loop ' + i;
- else if (j > 30000)
- return ' test0 ' + j;
- }
- } catch(e){}
- }
- var ret = test0() + ' test StSlot generation';
- print('pass');
|