mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
- remove all '#JERRY_ESNEXT' macro - remove 5.1 build profile, update test runner accordingly (Note: all builtins are turn on by default) - move tests from tests/jerry/esnext into tests/jerry, concatenate files with same names - add skiplist to some snapshot tests that were supported only in 5.1 - fix doxygen issues that were hidden before (bc. of es.next macro) Co-authored-by: Martin Negyokru negyokru@inf.u-szeged.hu JerryScript-DCO-1.0-Signed-off-by: Adam Szilagyi aszilagy@inf.u-szeged.hu
69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
// Copyright JS Foundation and other contributors, http://js.foundation
|
|
//
|
|
// 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.
|
|
|
|
function checkOwnProperties(obj, propList)
|
|
{
|
|
names = Object.getOwnPropertyNames(obj)
|
|
assert(names.length === propList.length)
|
|
|
|
for (var i = 0; i < propList.length; ++i)
|
|
{
|
|
assert(names[i] === propList[i])
|
|
|
|
var descriptor = Object.getOwnPropertyDescriptor(obj, names[i])
|
|
assert(descriptor.writable == true && descriptor.get === undefined && descriptor.set === undefined);
|
|
}
|
|
}
|
|
|
|
var o = {..."a" + "bc"}
|
|
|
|
assert(o[0] === "a")
|
|
assert(o[1] === "b")
|
|
assert(o[2] === "c")
|
|
checkOwnProperties(o, ["0", "1", "2"])
|
|
|
|
s = { a:3.5, b() {}, get c() { return "Prop" } }
|
|
o = {...null, ...undefined, ...s}
|
|
|
|
assert(o.a === 3.5)
|
|
assert(o.b === s.b)
|
|
assert(o.c === "Prop")
|
|
checkOwnProperties(o, ["a", "b", "c"])
|
|
|
|
s = { a:"X", b:-1.25, c:"Str" }
|
|
o = { get a() {}, set b(v) {}, ...s, c() { return 1 }}
|
|
|
|
assert(o.a === "X")
|
|
assert(o.b === -1.25)
|
|
assert(o.c() === 1)
|
|
checkOwnProperties(o, ["a", "b", "c"])
|
|
|
|
s = { p1:[1,2], "(a)":"Msg" }
|
|
Object.defineProperty(s, 'nonEnumerable', { value: 8.75, writable: true, enumerable:false });
|
|
assert(s.nonEnumerable === 8.75)
|
|
|
|
o = { ...s, "p!":5, ...s, ...s }
|
|
assert(o.p1 === s.p1)
|
|
assert(o["(a)"] === "Msg")
|
|
assert(o["p!"] === 5)
|
|
checkOwnProperties(o, ["p1", "(a)", "p!"])
|
|
|
|
var sym = Symbol('Any')
|
|
s = [ { [sym]:5, a:6 } ]
|
|
o = { ...((s))[0] }
|
|
|
|
assert(o[sym] === 5)
|
|
assert(o.a === 6)
|
|
checkOwnProperties(o, ["a"])
|