1425bb815Sopenharmony_ci/* Copyright JS Foundation and other contributors, http://js.foundation 2425bb815Sopenharmony_ci * 3425bb815Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4425bb815Sopenharmony_ci * you may not use this file except in compliance with the License. 5425bb815Sopenharmony_ci * You may obtain a copy of the License at 6425bb815Sopenharmony_ci * 7425bb815Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8425bb815Sopenharmony_ci * 9425bb815Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10425bb815Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS 11425bb815Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12425bb815Sopenharmony_ci * See the License for the specific language governing permissions and 13425bb815Sopenharmony_ci * limitations under the License. 14425bb815Sopenharmony_ci */ 15425bb815Sopenharmony_ci 16425bb815Sopenharmony_ci/* 17425bb815Sopenharmony_ci * Intrinsic built-in description 18425bb815Sopenharmony_ci */ 19425bb815Sopenharmony_ci 20425bb815Sopenharmony_ci#include "ecma-builtin-helpers-macro-defines.inc.h" 21425bb815Sopenharmony_ci 22425bb815Sopenharmony_ci#if ENABLED (JERRY_ES2015) 23425bb815Sopenharmony_ci 24425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.2 */ 25425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_HAS_INSTANCE, 26425bb815Sopenharmony_ci LIT_MAGIC_STRING_HAS_INSTANCE) 27425bb815Sopenharmony_ci 28425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.3 */ 29425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_IS_CONCAT_SPREADABLE, 30425bb815Sopenharmony_ci LIT_MAGIC_STRING_IS_CONCAT_SPREADABLE) 31425bb815Sopenharmony_ci 32425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.4 */ 33425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_ITERATOR, 34425bb815Sopenharmony_ci LIT_MAGIC_STRING_ITERATOR) 35425bb815Sopenharmony_ci 36425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.6 */ 37425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_MATCH, 38425bb815Sopenharmony_ci LIT_MAGIC_STRING_MATCH) 39425bb815Sopenharmony_ci 40425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.8 */ 41425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_REPLACE, 42425bb815Sopenharmony_ci LIT_MAGIC_STRING_REPLACE) 43425bb815Sopenharmony_ci 44425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.9 */ 45425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_SEARCH, 46425bb815Sopenharmony_ci LIT_MAGIC_STRING_SEARCH) 47425bb815Sopenharmony_ci 48425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.10 */ 49425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_SPECIES, 50425bb815Sopenharmony_ci LIT_MAGIC_STRING_SPECIES) 51425bb815Sopenharmony_ci 52425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.11 */ 53425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_SPLIT, 54425bb815Sopenharmony_ci LIT_MAGIC_STRING_SPLIT) 55425bb815Sopenharmony_ci 56425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.12 */ 57425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_TO_PRIMITIVE, 58425bb815Sopenharmony_ci LIT_MAGIC_STRING_TO_PRIMITIVE) 59425bb815Sopenharmony_ci 60425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.13 */ 61425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_TO_STRING_TAG, 62425bb815Sopenharmony_ci LIT_MAGIC_STRING_TO_STRING_TAG) 63425bb815Sopenharmony_ci 64425bb815Sopenharmony_ci/* ECMA-262 v6, 19.4.2.14 */ 65425bb815Sopenharmony_ciSYMBOL_VALUE (LIT_GLOBAL_SYMBOL_UNSCOPABLES, 66425bb815Sopenharmony_ci LIT_MAGIC_STRING_UNSCOPABLES) 67425bb815Sopenharmony_ci/* Routine properties: 68425bb815Sopenharmony_ci * (property name, C routine name, arguments number or NON_FIXED, value of the routine's length property) */ 69425bb815Sopenharmony_ciROUTINE (LIT_MAGIC_STRING_PARSE_FLOAT, ECMA_INTRINSIC_PARSE_FLOAT, 1, 1) 70425bb815Sopenharmony_ciROUTINE (LIT_MAGIC_STRING_PARSE_INT, ECMA_INTRINSIC_PARSE_INT, 2, 2) 71425bb815Sopenharmony_ciROUTINE (LIT_INTERNAL_MAGIC_STRING_ARRAY_PROTOTYPE_VALUES, ECMA_INTRINSIC_ARRAY_PROTOTYPE_VALUES, 0, 0) 72425bb815Sopenharmony_ci#endif /* ENABLED (JERRY_ES2015) */ 73425bb815Sopenharmony_ci#include "ecma-builtin-helpers-macro-undefs.inc.h" 74