Files
2023-08-01 13:49:46 +02:00

1021 lines
41 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CreateImplementation = undefined;
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); /**
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
var _index = require("../values/index.js");
var _get = require("./get.js");
var _is = require("./is.js");
var _abstract = require("./abstract.js");
var _construct = require("./construct.js");
var _singletons = require("../singletons.js");
var _strict = require("../utils/strict.js");
var _strict2 = _interopRequireDefault(_strict);
var _invariant = require("../invariant.js");
var _invariant2 = _interopRequireDefault(_invariant);
var _parse = require("../utils/parse.js");
var _parse2 = _interopRequireDefault(_parse);
var _traverseFast = require("../utils/traverse-fast.js");
var _traverseFast2 = _interopRequireDefault(_traverseFast);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var CreateImplementation = exports.CreateImplementation = function () {
function CreateImplementation() {
_classCallCheck(this, CreateImplementation);
}
_createClass(CreateImplementation, [{
key: "StringCreate",
// ECMA262 9.4.3.3
value: function StringCreate(realm, value, prototype) {
// 1. Assert: Type(value) is String.
(0, _invariant2.default)(value instanceof _index.StringValue, "expected string value");
// 2. Let S be a newly created String exotic object.
var S = new _index.StringExotic(realm);
// 3. Set the [[StringData]] internal slot of S to value.
S.$StringData = value;
// 4. Set S's essential internal methods to the default ordinary object definitions specified in 9.1.
// 5. Set the [[GetOwnProperty]] internal method of S as specified in 9.4.3.1.
// 6. Set the [[OwnPropertyKeys]] internal method of S as specified in 9.4.3.2.
// 7. Set the [[Prototype]] internal slot of S to prototype.
S.$Prototype = prototype;
// 8. Set the [[Extensible]] internal slot of S to true.
S.setExtensible(true);
// 9. Let length be the number of code unit elements in value.
var length = value.value.length;
// 10. Perform ! DefinePropertyOrThrow(S, "length", PropertyDescriptor{[[Value]]: length, [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }).
_singletons.Properties.DefinePropertyOrThrow(realm, S, "length", {
value: new _index.NumberValue(realm, length),
writable: false,
enumerable: false,
configurable: false
});
// 11. Return S.
return S;
}
// B.2.3.2.1
}, {
key: "CreateHTML",
value: function CreateHTML(realm, string, tag, attribute, value) {
// 1. Let str be ? RequireObjectCoercible(string).
var str = (0, _abstract.RequireObjectCoercible)(realm, string);
// 2. Let S be ? ToString(str).
var S = _singletons.To.ToStringPartial(realm, str);
// 3. Let p1 be the String value that is the concatenation of "<" and tag.
var p1 = "<" + tag;
// 4. If attribute is not the empty String, then
if (attribute) {
// a. Let V be ? ToString(value).
var V = _singletons.To.ToStringPartial(realm, value);
// b. Let escapedV be the String value that is the same as V except that each occurrence of the code unit
// 0x0022 (QUOTATION MARK) in V has been replaced with the six code unit sequence "&quot;".
var escapedV = V.replace(/"/g, "&quot;");
// c. Let p1 be the String value that is the concatenation of the following String values:
// - The String value of p1
// - Code unit 0x0020 (SPACE)
// - The String value of attribute
// - Code unit 0x003D (EQUALS SIGN)
// - Code unit 0x0022 (QUOTATION MARK)
// - The String value of escapedV
// - Code unit 0x0022 (QUOTATION MARK)
p1 = p1 + " " + attribute + "=\"" + escapedV + "\"";
}
// 5. Let p2 be the String value that is the concatenation of p1 and ">".
var p2 = p1 + ">";
// 6. Let p3 be the String value that is the concatenation of p2 and S.
var p3 = "" + p2 + S;
// 7. Let p4 be the String value that is the concatenation of p3, "</", tag, and ">".
var p4 = p3 + "</" + tag + ">";
// 8. Return p4.
return new _index.StringValue(realm, p4);
}
// ECMA262 9.4.4.8.1
}, {
key: "MakeArgGetter",
value: function MakeArgGetter(realm, name, env) {
return new _index.NativeFunctionValue(realm, undefined, undefined, 0, function (context) {
return env.GetBindingValue(name, false);
}, false);
}
// ECMA262 9.4.4.8.1
}, {
key: "MakeArgSetter",
value: function MakeArgSetter(realm, name, env) {
return new _index.NativeFunctionValue(realm, undefined, undefined, 1, function (context, _ref) {
var _ref2 = _slicedToArray(_ref, 1),
value = _ref2[0];
return env.SetMutableBinding(name, value, false);
}, false);
}
// ECMA262 21.1.5.1
}, {
key: "CreateStringIterator",
value: function CreateStringIterator(realm, string) {
// 1. Assert: Type(string) is String.
(0, _invariant2.default)(string instanceof _index.StringValue, "expected string to be a string value");
// 2. Let iterator be ObjectCreate(%StringIteratorPrototype%, « [[IteratedString]], [[StringIteratorNextIndex]] »).
var iterator = this.ObjectCreate(realm, realm.intrinsics.StringIteratorPrototype, {
$IteratedString: undefined,
$StringIteratorNextIndex: undefined
});
// 3. Set iterator's [[IteratedString]] internal slot to string.
iterator.$IteratedString = string;
// 4. Set iterator's [[StringIteratorNextIndex]] internal slot to 0.
iterator.$StringIteratorNextIndex = 0;
// 5. Return iterator.
return iterator;
}
// ECMA262 9.4.2.3
}, {
key: "ArraySpeciesCreate",
value: function ArraySpeciesCreate(realm, originalArray, length) {
// 1. Assert: length is an integer Number ≥ 0.
(0, _invariant2.default)(length >= 0, "expected length >= 0");
// 2. If length is -0, let length be +0.
if (Object.is(length, -0)) length = +0;
// 3. Let C be undefined.
var C = realm.intrinsics.undefined;
// 4. Let isArray be ? IsArray(originalArray).
var isArray = (0, _is.IsArray)(realm, originalArray);
// 5. If isArray is true, then
if (isArray) {
// a. Let C be ? Get(originalArray, "constructor").
C = (0, _get.Get)(realm, originalArray, "constructor");
// b. If IsConstructor(C) is true, then
if ((0, _is.IsConstructor)(realm, C)) {
(0, _invariant2.default)(C instanceof _index.ObjectValue);
// i. Let thisRealm be the current Realm Record.
var thisRealm = realm;
// ii. Let realmC be ? GetFunctionRealm(C).
var realmC = (0, _get.GetFunctionRealm)(realm, C);
// iii. If thisRealm and realmC are not the same Realm Record, then
if (thisRealm !== realmC) {
// 1. If SameValue(C, realmC.[[Intrinsics]].[[%Array%]]) is true, let C be undefined.
if ((0, _abstract.SameValue)(realm, C, realmC.intrinsics.Array)) {
C = realm.intrinsics.undefined;
}
}
}
// c. If Type(C) is Object, then
if (C.mightBeObject()) {
if (C.mightNotBeObject()) C.throwIfNotConcrete();
(0, _invariant2.default)(C instanceof _index.ObjectValue || C instanceof _index.AbstractObjectValue);
// i. Let C be ? Get(C, @@species).
C = (0, _get.Get)(realm, C, realm.intrinsics.SymbolSpecies);
// ii. If C is null, let C be undefined.
if (C instanceof _index.NullValue) C = realm.intrinsics.undefined;
}
}
// 6. If C is undefined, return ? ArrayCreate(length).
if (C instanceof _index.UndefinedValue) return this.ArrayCreate(realm, length);
// 7. If IsConstructor(C) is false, throw a TypeError exception.
if (!(0, _is.IsConstructor)(realm, C)) {
throw realm.createErrorThrowCompletion(realm.intrinsics.TypeError, "not a constructor");
}
// 8. Return ? Construct(C, « length »).
return (0, _construct.Construct)(realm, C.throwIfNotConcreteObject(), [new _index.NumberValue(realm, length)]);
}
// ECMA262 7.4.7
}, {
key: "CreateIterResultObject",
value: function CreateIterResultObject(realm, value, done) {
// 1. Assert: Type(done) is Boolean.
(0, _invariant2.default)(typeof done === "boolean", "expected done to be a boolean");
// 2. Let obj be ObjectCreate(%ObjectPrototype%).
var obj = this.ObjectCreate(realm, realm.intrinsics.ObjectPrototype);
// 3. Perform CreateDataProperty(obj, "value", value).
this.CreateDataProperty(realm, obj, "value", value);
// 4. Perform CreateDataProperty(obj, "done", done).
this.CreateDataProperty(realm, obj, "done", new _index.BooleanValue(realm, done));
// 5. Return obj.
return obj;
}
// ECMA262 22.1.5.1
}, {
key: "CreateArrayIterator",
value: function CreateArrayIterator(realm, array, kind) {
// 1. Assert: Type(array) is Object.
(0, _invariant2.default)(array instanceof _index.ObjectValue, "expected object");
// 2. Let iterator be ObjectCreate(%ArrayIteratorPrototype%, « [[IteratedObject]],
// [[ArrayIteratorNextIndex]], [[ArrayIterationKind]] »).
var iterator = this.ObjectCreate(realm, realm.intrinsics.ArrayIteratorPrototype, {
$IteratedObject: undefined,
$ArrayIteratorNextIndex: undefined,
$ArrayIterationKind: undefined
});
// 3. Set iterator's [[IteratedObject]] internal slot to array.
iterator.$IteratedObject = array;
// 4. Set iterator's [[ArrayIteratorNextIndex]] internal slot to 0.
iterator.$ArrayIteratorNextIndex = new _index.NumberValue(realm, 0);
// 5. Set iterator's [[ArrayIterationKind]] internal slot to kind.
iterator.$ArrayIterationKind = kind;
// 6. Return iterator.
return iterator;
}
// ECMA262 9.4.2.2
}, {
key: "ArrayCreate",
value: function ArrayCreate(realm, length, proto) {
// 1. Assert: length is an integer Number ≥ 0.
(0, _invariant2.default)(length >= 0);
// 2. If length is -0, let length be +0.
if (Object.is(length, -0)) length = +0;
// 3. If length>232-1, throw a RangeError exception.
if (length > Math.pow(2, 32) - 1) {
throw realm.createErrorThrowCompletion(realm.intrinsics.RangeError, "length>2^32-1");
}
// 4. If the proto argument was not passed, let proto be the intrinsic object %ArrayPrototype%.
proto = proto || realm.intrinsics.ArrayPrototype;
// 5. Let A be a newly created Array exotic object.
var A = new _index.ArrayValue(realm);
// 6. Set A's essential internal methods except for [[DefineOwnProperty]] to the default ordinary object definitions specified in 9.1.
// 7. Set the [[DefineOwnProperty]] internal method of A as specified in 9.4.2.1.
// 8. Set the [[Prototype]] internal slot of A to proto.
A.$Prototype = proto;
// 9. Set the [[Extensible]] internal slot of A to true.
A.setExtensible(true);
// 10. Perform ! OrdinaryDefineOwnProperty(A, "length", PropertyDescriptor{[[Value]]: length, [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: false}).
_singletons.Properties.OrdinaryDefineOwnProperty(realm, A, "length", {
value: new _index.NumberValue(realm, length),
writable: true,
enumerable: false,
configurable: false
});
// 11. Return A.
return A;
}
// ECMA262 7.3.16
}, {
key: "CreateArrayFromList",
value: function CreateArrayFromList(realm, elems) {
// 1. Assert: elements is a List whose elements are all ECMAScript language values.
var _iteratorNormalCompletion = true;
var _didIteratorError = false;
var _iteratorError = undefined;
try {
for (var _iterator = elems[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
var elem = _step.value;
(0, _invariant2.default)(elem instanceof _index.Value, "value expected");
} // 2. Let array be ArrayCreate(0) (see 9.4.2.2).
} catch (err) {
_didIteratorError = true;
_iteratorError = err;
} finally {
try {
if (!_iteratorNormalCompletion && _iterator.return) {
_iterator.return();
}
} finally {
if (_didIteratorError) {
throw _iteratorError;
}
}
}
var arr = this.ArrayCreate(realm, 0);
// 3. Let n be 0.
var n = 0;
// 4. For each element e of elements
var _iteratorNormalCompletion2 = true;
var _didIteratorError2 = false;
var _iteratorError2 = undefined;
try {
for (var _iterator2 = elems[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
var _elem = _step2.value;
// a. Let status be CreateDataProperty(array, ! ToString(n), e).
var status = this.CreateDataProperty(realm, arr, new _index.StringValue(realm, n + ""), _elem);
// b. Assert: status is true.
(0, _invariant2.default)(status, "couldn't create data property");
// c. Increment n by 1.
n++;
}
// 5. Return array.
} catch (err) {
_didIteratorError2 = true;
_iteratorError2 = err;
} finally {
try {
if (!_iteratorNormalCompletion2 && _iterator2.return) {
_iterator2.return();
}
} finally {
if (_didIteratorError2) {
throw _iteratorError2;
}
}
}
return arr;
}
// ECMA262 9.4.4.7
}, {
key: "CreateUnmappedArgumentsObject",
value: function CreateUnmappedArgumentsObject(realm, argumentsList) {
// 1. Let len be the number of elements in argumentsList.
var len = argumentsList.length;
// 2. Let obj be ObjectCreate(%ObjectPrototype%, « [[ParameterMap]] »).
var obj = this.ObjectCreate(realm, realm.intrinsics.ObjectPrototype);
// 3. Set obj's [[ParameterMap]] internal slot to undefined.
obj.$ParameterMap = obj; // The value is never used, but allows us to use undefined for "not in"
// 4. Perform DefinePropertyOrThrow(obj, "length", PropertyDescriptor{[[Value]]: len,
// [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}).
_singletons.Properties.DefinePropertyOrThrow(realm, obj, "length", {
value: new _index.NumberValue(realm, len),
writable: true,
enumerable: false,
configurable: true
});
// 5. Let index be 0.
var index = 0;
// 6. Repeat while index < len,
while (index < len) {
// a. Let val be argumentsList[index].
var val = argumentsList[index];
// b. Perform CreateDataProperty(obj, ! ToString(index), val).
this.CreateDataProperty(realm, obj, new _index.StringValue(realm, index + ""), val);
// c. Let index be index + 1.
index++;
}
// 7. Perform ! DefinePropertyOrThrow(obj, @@iterator, PropertyDescriptor {[[Value]]:
// %ArrayProto_values%, [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}).
_singletons.Properties.DefinePropertyOrThrow(realm, obj, realm.intrinsics.SymbolIterator, {
value: realm.intrinsics.ArrayProto_values,
writable: true,
enumerable: false,
configurable: true
});
// 8. Perform ! DefinePropertyOrThrow(obj, "callee", PropertyDescriptor {[[Get]]:
// %ThrowTypeError%, [[Set]]: %ThrowTypeError%, [[Enumerable]]: false, [[Configurable]]: false}).
_singletons.Properties.DefinePropertyOrThrow(realm, obj, "callee", {
get: realm.intrinsics.ThrowTypeError,
set: realm.intrinsics.ThrowTypeError,
enumerable: false,
configurable: false
});
// 10. Return obj.
return obj;
}
// ECMA262 9.4.4.8
}, {
key: "CreateMappedArgumentsObject",
value: function CreateMappedArgumentsObject(realm, func, formals, argumentsList, env) {
// 1. Assert: formals does not contain a rest parameter, any binding patterns, or any
// initializers. It may contain duplicate identifiers.
var _iteratorNormalCompletion3 = true;
var _didIteratorError3 = false;
var _iteratorError3 = undefined;
try {
for (var _iterator3 = formals[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
var param = _step3.value;
(0, _invariant2.default)(param.type === "Identifier", "expected only simple params");
}
// 2. Let len be the number of elements in argumentsList.
} catch (err) {
_didIteratorError3 = true;
_iteratorError3 = err;
} finally {
try {
if (!_iteratorNormalCompletion3 && _iterator3.return) {
_iterator3.return();
}
} finally {
if (_didIteratorError3) {
throw _iteratorError3;
}
}
}
var len = argumentsList.length;
// 3. Let obj be a newly created arguments exotic object with a [[ParameterMap]] internal slot.
var obj = new _index.ArgumentsExotic(realm);
// 4. Set the [[GetOwnProperty]] internal method of obj as specified in 9.4.4.1.
// 5. Set the [[DefineOwnProperty]] internal method of obj as specified in 9.4.4.2.
// 6. Set the [[Get]] internal method of obj as specified in 9.4.4.3.
// 7. Set the [[Set]] internal method of obj as specified in 9.4.4.4.
// 8. Set the [[Delete]] internal method of obj as specified in 9.4.4.6.
// 9. Set the remainder of obj's essential internal methods to the default ordinary
// object definitions specified in 9.1.
// 10. Set the [[Prototype]] internal slot of obj to %ObjectPrototype%.
obj.$Prototype = realm.intrinsics.ObjectPrototype;
// 11. Set the [[Extensible]] internal slot of obj to true.
obj.setExtensible(true);
// 12. Let map be ObjectCreate(null).
var map = new _index.ObjectValue(realm);
// 13. Set the [[ParameterMap]] internal slot of obj to map.
obj.$ParameterMap = map;
// 14. Let parameterNames be the BoundNames of formals.
var parameterNames = [];
var _iteratorNormalCompletion4 = true;
var _didIteratorError4 = false;
var _iteratorError4 = undefined;
try {
for (var _iterator4 = formals[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
var _param = _step4.value;
parameterNames.push(_param.name);
}
// 15. Let numberOfParameters be the number of elements in parameterNames.
} catch (err) {
_didIteratorError4 = true;
_iteratorError4 = err;
} finally {
try {
if (!_iteratorNormalCompletion4 && _iterator4.return) {
_iterator4.return();
}
} finally {
if (_didIteratorError4) {
throw _iteratorError4;
}
}
}
var numberOfParameters = parameterNames.length;
// 16. Let index be 0.
var index = 0;
// 17. Repeat while index < len,
while (index < len) {
// a. Let val be argumentsList[index].
var val = argumentsList[index];
// b. Perform CreateDataProperty(obj, ! ToString(index), val).
this.CreateDataProperty(realm, obj, new _index.StringValue(realm, index + ""), val);
// c. Let index be index + 1.
index++;
}
// 18. Perform DefinePropertyOrThrow(obj, "length", PropertyDescriptor{[[Value]]: len,
// [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}).
_singletons.Properties.DefinePropertyOrThrow(realm, obj, "length", {
value: new _index.NumberValue(realm, len),
writable: true,
enumerable: false,
configurable: true
});
// 19. Let mappedNames be an empty List.
var mappedNames = [];
// 20. Let index be numberOfParameters - 1.
index = numberOfParameters - 1;
// 21. Repeat while index ≥ 0,
while (index >= 0) {
// a. Let name be parameterNames[index].
var name = parameterNames[index];
// b. If name is not an element of mappedNames, then
if (mappedNames.indexOf(name) < 0) {
// i. Add name as an element of the list mappedNames.
mappedNames.push(name);
// ii. If index < len, then
if (index < len) {
// 1. Let g be MakeArgGetter(name, env).
var g = this.MakeArgGetter(realm, name, env);
// 2. Let p be MakeArgSetter(name, env).
var p = this.MakeArgSetter(realm, name, env);
// 3. Perform map.[[DefineOwnProperty]](! ToString(index), PropertyDescriptor{[[Set]]: p, [[Get]]: g,
// [[Enumerable]]: false, [[Configurable]]: true}).
map.$DefineOwnProperty(new _index.StringValue(realm, index + ""), {
set: p,
get: g,
enumerable: false,
configurable: true
});
}
}
// c. Let index be index - 1.
index--;
}
// 22. Perform ! DefinePropertyOrThrow(obj, @@iterator, PropertyDescriptor {[[Value]]:
// %ArrayProto_values%, [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}).
_singletons.Properties.DefinePropertyOrThrow(realm, obj, realm.intrinsics.SymbolIterator, {
value: realm.intrinsics.ArrayProto_values,
writable: true,
enumerable: false,
configurable: true
});
// 23. Perform ! DefinePropertyOrThrow(obj, "callee", PropertyDescriptor {[[Value]]:
// func, [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}).
_singletons.Properties.DefinePropertyOrThrow(realm, obj, "callee", {
value: func,
writable: true,
enumerable: false,
configurable: true
});
// 24. Return obj.
return obj;
}
// ECMA262 7.3.4
}, {
key: "CreateDataProperty",
value: function CreateDataProperty(realm, O, P, V) {
// 1. Assert: Type(O) is Object.
(0, _invariant2.default)(O instanceof _index.ObjectValue, "Not an object value");
// 2. Assert: IsPropertyKey(P) is true.
(0, _invariant2.default)((0, _is.IsPropertyKey)(realm, P), "Not a property key");
// 3. Let newDesc be the PropertyDescriptor{[[Value]]: V, [[Writable]]: true, [[Enumerable]]: true, [[Configurable]]: true}.
var newDesc = {
value: V,
writable: true,
enumerable: true,
configurable: true
};
// 4. Return ? O.[[DefineOwnProperty]](P, newDesc).
return O.$DefineOwnProperty(P, newDesc);
}
// ECMA262 7.3.5
}, {
key: "CreateMethodProperty",
value: function CreateMethodProperty(realm, O, P, V) {
// 1. Assert: Type(O) is Object.
(0, _invariant2.default)(O instanceof _index.ObjectValue, "Not an object value");
// 2. Assert: IsPropertyKey(P) is true.
(0, _invariant2.default)((0, _is.IsPropertyKey)(realm, P), "Not a property key");
// 3. Let newDesc be the PropertyDescriptor{[[Value]]: V, [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true}.
var newDesc = {
value: V,
writable: true,
enumerable: false,
configurable: true
};
// 4. Return ? O.[[DefineOwnProperty]](P, newDesc).
return O.$DefineOwnProperty(P, newDesc);
}
// ECMA262 7.3.6
}, {
key: "CreateDataPropertyOrThrow",
value: function CreateDataPropertyOrThrow(realm, O, P, V) {
// 1. Assert: Type(O) is Object.
(0, _invariant2.default)(O instanceof _index.ObjectValue, "Not an object value");
// 2. Assert: IsPropertyKey(P) is true.
(0, _invariant2.default)((0, _is.IsPropertyKey)(realm, P), "Not a property key");
//3. Let success be ? CreateDataProperty(O, P, V).
var success = this.CreateDataProperty(realm, O, P, V);
// 4. If success is false, throw a TypeError exception.
if (success === false) {
throw realm.createErrorThrowCompletion(realm.intrinsics.TypeError, "not a function");
}
// 5. Return success.
return success;
}
// ECMA262 9.1.12
}, {
key: "ObjectCreate",
value: function ObjectCreate(realm, proto, internalSlotsList) {
// 1. If internalSlotsList was not provided, let internalSlotsList be an empty List.
internalSlotsList = internalSlotsList || {};
// 2. Let obj be a newly created object with an internal slot for each name in internalSlotsList.
var obj = new _index.ObjectValue(realm);
Object.assign(obj, internalSlotsList);
// 3. Set obj's essential internal methods to the default ordinary object definitions specified in 9.1.
// 4. Set the [[Prototype]] internal slot of obj to proto.
obj.$Prototype = proto;
// 5. Set the [[Extensible]] internal slot of obj to true.
obj.setExtensible(true);
// 6. Return obj.
return obj;
}
// ECMA262 9.1.13
}, {
key: "OrdinaryCreateFromConstructor",
value: function OrdinaryCreateFromConstructor(realm, constructor, intrinsicDefaultProto, internalSlotsList) {
// 1. Assert: intrinsicDefaultProto is a String value that is this specification's name of an intrinsic
// object. The corresponding object must be an intrinsic that is intended to be used as the [[Prototype]]
// value of an object.
(0, _invariant2.default)(realm.intrinsics[intrinsicDefaultProto], "not a valid proto ref");
// 2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto).
var proto = (0, _get.GetPrototypeFromConstructor)(realm, constructor, intrinsicDefaultProto);
// 3. Return ObjectCreate(proto, internalSlotsList).
return this.ObjectCreate(realm, proto, internalSlotsList);
}
// ECMA262 7.3.17
}, {
key: "CreateListFromArrayLike",
value: function CreateListFromArrayLike(realm, obj, elementTypes) {
// 1. If elementTypes was not passed, let elementTypes be « Undefined, Null, Boolean, String, Symbol, Number, Object ».
elementTypes = elementTypes || ["Undefined", "Null", "Boolean", "String", "Symbol", "Number", "Object"];
// 2. If Type(obj) is not Object, throw a TypeError exception.
if (!(obj instanceof _index.ObjectValue)) {
throw realm.createErrorThrowCompletion(realm.intrinsics.TypeError, "Not an object");
}
// 3. Let len be ? ToLength(? Get(obj, "length")).
var len = _singletons.To.ToLength(realm, (0, _get.Get)(realm, obj, "length"));
// 4. Let list be a new empty List.
var list = [];
// 5. Let index be 0.
var index = 0;
// 6. Repeat while index < len
while (index < len) {
// a. Let indexName be ! ToString(index).
var indexName = index + "";
// b. Let next be ? Get(obj, indexName).
var next = (0, _get.Get)(realm, obj, indexName);
// c. If Type(next) is not an element of elementTypes, throw a TypeError exception.
if (elementTypes.indexOf((0, _abstract.Type)(realm, next)) < 0) {
throw realm.createErrorThrowCompletion(realm.intrinsics.TypeError, "invalid element type");
}
// d. Append next as the last element of list.
list.push(next);
// e. Set index to index + 1.
index++;
}
// 7. Return list.
return list;
}
// ECMA262 19.2.1.1.1
}, {
key: "CreateDynamicFunction",
value: function CreateDynamicFunction(realm, constructor, newTarget, kind, args) {
// 1. If newTarget is undefined, let newTarget be constructor.
newTarget = !newTarget ? constructor : newTarget;
var fallbackProto = void 0;
// 2. If kind is "normal", then
if (kind === "normal") {
// a. Let goal be the grammar symbol FunctionBody.
// b. Let parameterGoal be the grammar symbol FormalParameters.
// c. Let fallbackProto be "%FunctionPrototype%".
fallbackProto = "FunctionPrototype";
} else {
// 3. Else,
// a. Let goal be the grammar symbol GeneratorBody.
// b. Let parameterGoal be the grammar symbol FormalParameters[Yield].
// c. Let fallbackProto be "%Generator%".
fallbackProto = "Generator";
}
// 4. Let argCount be the number of elements in args.
var argCount = args.length;
// 5. Let P be the empty String.
var P = "";
var bodyText = void 0;
// 6. If argCount = 0, let bodyText be the empty String.
if (argCount === 0) {
bodyText = realm.intrinsics.emptyString;
} else if (argCount === 1) {
// 7. Else if argCount = 1, let bodyText be args[0].
bodyText = args[0];
} else {
// 8. Else argCount > 1,
// a. Let firstArg be args[0].
var firstArg = args[0];
// b. Let P be ? ToString(firstArg).
P = _singletons.To.ToStringPartial(realm, firstArg);
// c. Let k be 1.
var k = 1;
// d. Repeat, while k < argCount-1
while (k < argCount - 1) {
// i. Let nextArg be args[k].
var nextArg = args[k];
// ii. Let nextArgString be ? ToString(nextArg).
var nextArgString = _singletons.To.ToStringPartial(realm, nextArg);
// iii. Let P be the result of concatenating the previous value of P, the String "," (a comma), and nextArgString.
P = P + "," + nextArgString;
// iv. Increase k by 1.
k += 1;
}
// e. Let bodyText be args[k].
bodyText = args[k];
}
// 9. Let bodyText be ? ToString(bodyText).
bodyText = _singletons.To.ToStringPartial(realm, bodyText);
// 10. Let parameters be the result of parsing P, interpreted as UTF-16 encoded Unicode text as described in 6.1.4, using parameterGoal as the goal symbol. Throw a SyntaxError exception if the parse fails.
// 11. Let body be the result of parsing bodyText, interpreted as UTF-16 encoded Unicode text as described in 6.1.4, using goal as the goal symbol. Throw a SyntaxError exception if the parse fails.
var ast = void 0;
try {
ast = (0, _parse2.default)(realm, "function" + (kind === "generator" ? "*" : "") + " _(" + P + "){" + bodyText + "}", "eval");
} catch (e) {
throw realm.createErrorThrowCompletion(realm.intrinsics.SyntaxError, "parse failed");
}
var _ast = ast,
_ast$program$body = _slicedToArray(_ast.program.body, 1),
functionDeclaration = _ast$program$body[0];
if (!functionDeclaration) {
throw realm.createErrorThrowCompletion(realm.intrinsics.SyntaxError, "parse failed");
}
(0, _invariant2.default)(functionDeclaration.type === "FunctionDeclaration");
var _ref3 = functionDeclaration,
params = _ref3.params,
body = _ref3.body;
// 12. If bodyText is strict mode code, then let strict be true, else let strict be false.
var strict = (0, _strict2.default)(body);
// 13. If any static semantics errors are detected for parameters or body, throw a SyntaxError or a ReferenceError exception, depending on the type of the error. If strict is true, the Early Error rules for StrictFormalParameters:FormalParameters are applied. Parsing and early error detection may be interweaved in an implementation dependent manner.
// 14. If ContainsUseStrict of body is true and IsSimpleParameterList of parameters is false, throw a SyntaxError exception.
// 15. If any element of the BoundNames of parameters also occurs in the LexicallyDeclaredNames of body, throw a SyntaxError exception.
// 16. If body Contains SuperCall is true, throw a SyntaxError exception.
// 17. If parameters Contains SuperCall is true, throw a SyntaxError exception.
// 18. If body Contains SuperProperty is true, throw a SyntaxError exception.
// 19. If parameters Contains SuperProperty is true, throw a SyntaxError exception.
// 20. If kind is "generator", then
if (kind === "generator") {
// a. If parameters Contains YieldExpression is true, throw a SyntaxError exception.
var containsYield = false;
var _iteratorNormalCompletion5 = true;
var _didIteratorError5 = false;
var _iteratorError5 = undefined;
try {
for (var _iterator5 = params[Symbol.iterator](), _step5; !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) {
var param = _step5.value;
(0, _traverseFast2.default)(param, function (node) {
if (node.type === "YieldExpression") {
containsYield = true;
return true;
}
if (node.type === "Identifier" && node.name === "yield") {
containsYield = true;
return true;
}
return false;
});
}
} catch (err) {
_didIteratorError5 = true;
_iteratorError5 = err;
} finally {
try {
if (!_iteratorNormalCompletion5 && _iterator5.return) {
_iterator5.return();
}
} finally {
if (_didIteratorError5) {
throw _iteratorError5;
}
}
}
if (containsYield) {
throw realm.createErrorThrowCompletion(realm.intrinsics.SyntaxError, "parse failed");
}
}
// 21. If strict is true, then
if (strict === true) {}
// a. If BoundNames of parameters contains any duplicate elements, throw a SyntaxError exception.
// 22. Let proto be ? GetPrototypeFromConstructor(newTarget, fallbackProto).
var proto = (0, _get.GetPrototypeFromConstructor)(realm, newTarget, fallbackProto);
// 23. Let F be FunctionAllocate(proto, strict, kind).
var F = _singletons.Functions.FunctionAllocate(realm, proto, strict, kind);
// 24. Let realmF be the value of F's [[Realm]] internal slot.
var realmF = F.$Realm;
// 25. Let scope be realmF.[[GlobalEnv]].
var scope = realmF.$GlobalEnv;
// 26. Perform FunctionInitialize(F, Normal, parameters, body, scope).
_singletons.Functions.FunctionInitialize(realm, F, "normal", params, body, scope);
// 27. If kind is "generator", then
if (kind === "generator") {
// a. Let prototype be ObjectCreate(%GeneratorPrototype%).
var prototype = this.ObjectCreate(realm, realm.intrinsics.GeneratorPrototype);
prototype.originalConstructor = F;
// b. Perform DefinePropertyOrThrow(F, "prototype", PropertyDescriptor{[[Value]]: prototype, [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: false}).
_singletons.Properties.DefinePropertyOrThrow(realm, F, "prototype", {
value: prototype,
writable: true,
enumerable: false,
configurable: false
});
} else {
// 28. Else, perform MakeConstructor(F).
(0, _construct.MakeConstructor)(realm, F);
}
// 29. Perform SetFunctionName(F, "anonymous").
_singletons.Functions.SetFunctionName(realm, F, "anonymous");
// 30. Return F.
return F;
}
}]);
return CreateImplementation;
}();
//# sourceMappingURL=create.js.map