mirror of
https://github.com/google/pebble.git
synced 2025-08-26 08:17:31 -04:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
22
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-001.js
vendored
Normal file
22
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-001.js
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
var o = {a: 1, b: 2, c: 3};
|
||||
|
||||
for (var p in o)
|
||||
{
|
||||
o[p] += 4;
|
||||
}
|
||||
|
||||
assert(o.a === 5 && o.b === 6 && o.c === 7);
|
25
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-002.js
vendored
Normal file
25
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-002.js
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
var a = new Array(1, 2, 3, 4, 5, 6, 7);
|
||||
a.eight = 8;
|
||||
|
||||
var p;
|
||||
for (p in a)
|
||||
{
|
||||
a[p] += 1;
|
||||
}
|
||||
|
||||
assert(a[0] === 2 && a[1] === 3 && a[2] === 4 && a[3] === 5 &&
|
||||
a[4] === 6 && a[5] === 7 && a[6] === 8 && a['eight'] === 9);
|
20
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-003.js
vendored
Normal file
20
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-003.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
var a = null;
|
||||
|
||||
for (var p in a)
|
||||
{
|
||||
assert(false);
|
||||
}
|
20
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-004.js
vendored
Normal file
20
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-004.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
var a;
|
||||
|
||||
for (var p in a)
|
||||
{
|
||||
assert(false);
|
||||
}
|
31
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-005.js
vendored
Normal file
31
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-005.js
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
|
||||
var b = {basep: "base"};
|
||||
|
||||
function dConstr()
|
||||
{
|
||||
this.derivedp = "derived";
|
||||
}
|
||||
dConstr.prototype = b;
|
||||
|
||||
var d = new dConstr();
|
||||
|
||||
for (var p in d)
|
||||
{
|
||||
d[p] += "A";
|
||||
}
|
||||
|
||||
assert(d.basep === "baseA" && d.derivedp === "derivedA");
|
26
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-006.js
vendored
Normal file
26
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-006.js
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
var o = {a: 1, b: 2, c: 3};
|
||||
|
||||
for
|
||||
(
|
||||
var
|
||||
p in o
|
||||
)
|
||||
{
|
||||
o[p] += 4;
|
||||
}
|
||||
|
||||
assert(o.a === 5 && o.b === 6 && o.c === 7);
|
32
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-007.js
vendored
Normal file
32
third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.04/12.06.04-007.js
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
// Copyright 2014 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.
|
||||
|
||||
var o = {a: 1, b: 2, c: 3, d: 4, e: 5};
|
||||
|
||||
function test()
|
||||
{
|
||||
for (var p in o)
|
||||
{
|
||||
if (p === 'c')
|
||||
return 1;
|
||||
|
||||
o[p] += 4;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
var r = test();
|
||||
|
||||
assert(((o.a === 5 && o.b === 6 && o.c === 3) ||
|
||||
(o.c === 3 && o.d === 8 && o.e === 9)) && r === 1);
|
Loading…
Add table
Add a link
Reference in a new issue