mirror of
https://github.com/google/pebble.git
synced 2025-05-21 02:45:00 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
320
third_party/jerryscript/tests/jerry/labelled-statements.js
vendored
Normal file
320
third_party/jerryscript/tests/jerry/labelled-statements.js
vendored
Normal file
|
@ -0,0 +1,320 @@
|
|||
// Copyright 2015 Samsung Electronics Co., Ltd.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
/* 1 */
|
||||
|
||||
a: a = 1;
|
||||
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 10; j++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 10; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
break a;
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'AB');
|
||||
|
||||
/* 2 */
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
switch (1)
|
||||
{
|
||||
case 1:
|
||||
continue b;
|
||||
default:
|
||||
break b;
|
||||
}
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'ABBBBBDABBBBBDABBBBBDABBBBBDABBBBBD');
|
||||
|
||||
/* 3 */
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
switch (1)
|
||||
{
|
||||
case 1:
|
||||
continue a;
|
||||
}
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'ABABABABAB');
|
||||
|
||||
/* 4 */
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
switch (1)
|
||||
{
|
||||
case 1:
|
||||
break b;
|
||||
}
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'ABDABDABDABDABD');
|
||||
|
||||
/* 5 */
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
switch (1)
|
||||
{
|
||||
case 1:
|
||||
break a;
|
||||
}
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'AB');
|
||||
|
||||
|
||||
/* 6 */
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
with ({})
|
||||
{
|
||||
break b;
|
||||
}
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'ABDABDABDABDABD');
|
||||
|
||||
/* 7 */
|
||||
str = '';
|
||||
|
||||
a: for (j = 0; j < 5; j++)
|
||||
{
|
||||
c:
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
b: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
with ({})
|
||||
{
|
||||
break c;
|
||||
}
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
|
||||
str += 'D';
|
||||
}
|
||||
}
|
||||
|
||||
assert (str === 'ABABABABAB');
|
||||
|
||||
/* 8 */
|
||||
|
||||
a: {
|
||||
function f ()
|
||||
{
|
||||
str = '';
|
||||
|
||||
a: for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += 'B';
|
||||
|
||||
continue a;
|
||||
|
||||
str += 'C';
|
||||
}
|
||||
str += 'D';
|
||||
}
|
||||
|
||||
assert (str === 'ABABABABAB');
|
||||
}
|
||||
}
|
||||
|
||||
f ();
|
||||
|
||||
/* 9 */
|
||||
|
||||
str = '';
|
||||
|
||||
for (i = 0; i < 5; i++)
|
||||
{
|
||||
str += 'A';
|
||||
|
||||
switch (i)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
str += '0';
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
str += '1';
|
||||
break;
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
str += '2';
|
||||
break;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
str += '3';
|
||||
break;
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
str += '4';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
str += 'B';
|
||||
}
|
||||
|
||||
assert (str === 'A0BA1BA2BA3BA4B');
|
||||
|
||||
/* 10 */
|
||||
|
||||
str = '';
|
||||
|
||||
for (i = 0; i < 2; i++)
|
||||
{
|
||||
str += '[A]';
|
||||
|
||||
a:
|
||||
for (j = 0; j < 5; j++)
|
||||
{
|
||||
str += '[B]';
|
||||
|
||||
switch (j)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
str += '[0]';
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
str += '[1]';
|
||||
if (i % 2 == 0)
|
||||
{
|
||||
str += '[1.1]';
|
||||
break a;
|
||||
}
|
||||
else
|
||||
{
|
||||
str += '[1.2]';
|
||||
}
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
str += '[2]';
|
||||
continue a;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
str += '[3]';
|
||||
break;
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
str += '[4]';
|
||||
continue a;
|
||||
}
|
||||
}
|
||||
|
||||
str += '[C]';
|
||||
}
|
||||
|
||||
str += '[D]';
|
||||
}
|
||||
|
||||
assert (str === '[A][B][0][C][B][1][1.1][D]' +
|
||||
'[A][B][0][C][B][1][1.2][2][B][2][B][3][C][B][4][D]');
|
Loading…
Add table
Add a link
Reference in a new issue