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
114 lines
5.4 KiB
JavaScript
114 lines
5.4 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.
|
|
|
|
/* Symbol prototype @@toStringTag */
|
|
assert (Symbol.prototype[Symbol.toStringTag] === "Symbol");
|
|
assert (Object.prototype.toString.call (Symbol ()) === "[object Symbol]");
|
|
|
|
assert (delete Symbol.prototype[Symbol.toStringTag]);
|
|
assert (Symbol.prototype[Symbol.toStringTag] === undefined);
|
|
Symbol.prototype[Symbol.toStringTag] = "myStringTag1";
|
|
assert (Object.prototype.toString.call (Symbol ()) === "[object myStringTag1]");
|
|
Symbol.prototype[Symbol.toStringTag] = {};
|
|
assert (Object.prototype.toString.call (Symbol ()) === "[object Object]");
|
|
|
|
/* Math @@toStringTag */
|
|
assert (Math[Symbol.toStringTag] === "Math");
|
|
assert (Object.prototype.toString.call (Math) === "[object Math]");
|
|
|
|
assert (delete Math[Symbol.toStringTag]);
|
|
assert (Math[Symbol.toStringTag] === undefined);
|
|
Math[Symbol.toStringTag] = "myStringTag2";
|
|
assert (Object.prototype.toString.call (Math) === "[object myStringTag2]");
|
|
Math[Symbol.toStringTag] = {};
|
|
assert (Object.prototype.toString.call (Math) === "[object Object]");
|
|
|
|
/* ArrayBuffer.prototype @@toStringTag */
|
|
assert (ArrayBuffer.prototype[Symbol.toStringTag] === "ArrayBuffer");
|
|
assert (Object.prototype.toString.call (new ArrayBuffer ()) === "[object ArrayBuffer]");
|
|
|
|
assert (delete ArrayBuffer.prototype[Symbol.toStringTag]);
|
|
assert (ArrayBuffer.prototype[Symbol.toStringTag] === undefined);
|
|
ArrayBuffer.prototype[Symbol.toStringTag] = "myStringTag3";
|
|
assert (Object.prototype.toString.call (new ArrayBuffer ()) === "[object myStringTag3]");
|
|
ArrayBuffer.prototype[Symbol.toStringTag] = {};
|
|
assert (ArrayBuffer.prototype.toString.call (new ArrayBuffer ()) === "[object Object]");
|
|
|
|
/* SharedArrayBuffer.prototype @@toStringTag */
|
|
assert (SharedArrayBuffer.prototype[Symbol.toStringTag] === "SharedArrayBuffer");
|
|
assert (Object.prototype.toString.call (new SharedArrayBuffer ()) === "[object SharedArrayBuffer]");
|
|
|
|
assert (delete SharedArrayBuffer.prototype[Symbol.toStringTag]);
|
|
assert (SharedArrayBuffer.prototype[Symbol.toStringTag] === undefined);
|
|
SharedArrayBuffer.prototype[Symbol.toStringTag] = "myStringTag3";
|
|
assert (Object.prototype.toString.call (new SharedArrayBuffer ()) === "[object myStringTag3]");
|
|
SharedArrayBuffer.prototype[Symbol.toStringTag] = {};
|
|
assert (SharedArrayBuffer.prototype.toString.call (new SharedArrayBuffer ()) === "[object Object]");
|
|
|
|
/* Promise.prototype @@toStringTag */
|
|
assert (Promise.prototype[Symbol.toStringTag] === "Promise");
|
|
assert (Object.prototype.toString.call (new Promise (function () {})) === "[object Promise]");
|
|
|
|
assert (delete Promise.prototype[Symbol.toStringTag]);
|
|
assert (Promise.prototype[Symbol.toStringTag] === undefined);
|
|
Promise.prototype[Symbol.toStringTag] = "myStringTag4";
|
|
assert (Object.prototype.toString.call (new Promise (function () {})) === "[object myStringTag4]");
|
|
Promise.prototype[Symbol.toStringTag] = {};
|
|
assert (Promise.prototype.toString.call (new Promise (function () {})) === "[object Object]");
|
|
|
|
/* Map.prototype @@toStringTag */
|
|
assert (Map.prototype[Symbol.toStringTag] === "Map");
|
|
assert (Object.prototype.toString.call (new Map ()) === "[object Map]");
|
|
assert (Object.prototype.toString.call (Map) === "[object Function]");
|
|
|
|
assert (delete Map.prototype[Symbol.toStringTag]);
|
|
assert (Map.prototype[Symbol.toStringTag] === undefined);
|
|
Map.prototype[Symbol.toStringTag] = "myStringTag5";
|
|
assert (Map.prototype.toString.call (new Map ()) === "[object myStringTag5]");
|
|
assert (Object.prototype.toString.call (Map) === "[object Function]");
|
|
Map.prototype[Symbol.toStringTag] = {};
|
|
assert (Map.prototype.toString.call (new Map) === "[object Object]");
|
|
|
|
/* JSON @@toStringTag */
|
|
assert (JSON[Symbol.toStringTag] === "JSON");
|
|
assert (Object.prototype.toString.call (JSON) === "[object JSON]");
|
|
|
|
assert (delete JSON[Symbol.toStringTag]);
|
|
assert (JSON[Symbol.toStringTag] === undefined);
|
|
JSON[Symbol.toStringTag] = "myStringTag6";
|
|
assert (Map.prototype.toString.call (JSON) === "[object myStringTag6]");
|
|
JSON[Symbol.toStringTag] = {};
|
|
assert (Object.prototype.toString.call (JSON) === "[object Object]");
|
|
|
|
var typedArrayTypes = ["Int8Array",
|
|
"Uint8Array",
|
|
"Uint8ClampedArray",
|
|
"Int16Array",
|
|
"Uint16Array",
|
|
"Int32Array",
|
|
"Uint32Array",
|
|
"Float32Array",
|
|
"Float64Array"];
|
|
|
|
for (var i = 0; i < typedArrayTypes.length; i++) {
|
|
var typedArray = this[typedArrayTypes[i]];
|
|
assert (typedArray.prototype[Symbol.toStringTag] === undefined);
|
|
assert (Object.prototype.toString.call (typedArray) === "[object Function]");
|
|
assert (Object.prototype.toString.call (typedArray.prototype) === "[object Object]");
|
|
|
|
var newArray = new typedArray ();
|
|
assert (newArray[Symbol.toStringTag] === typedArrayTypes[i]);
|
|
assert (Object.prototype.toString.call (newArray) === "[object " + typedArrayTypes[i] + "]");
|
|
}
|