Home | History | Annotate | Download | only in js

Lines Matching full:prototype

144     throw %make_type_error(kIncompatibleMethodReceiver, 'Set.prototype.add', this);
184 throw %make_type_error(kIncompatibleMethodReceiver, 'Set.prototype.has', this);
197 'Set.prototype.delete', this);
220 'Set.prototype.size', this);
230 'Set.prototype.clear', this);
239 'Set.prototype.forEach', this);
258 %AddNamedProperty(GlobalSet.prototype, "constructor", GlobalSet, DONT_ENUM);
259 %AddNamedProperty(GlobalSet.prototype, toStringTagSymbol, "Set",
264 // Set up the non-enumerable functions on the Set prototype object.
265 utils.InstallGetter(GlobalSet.prototype, "size", SetGetSize);
266 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
304 'Map.prototype.get', this);
319 'Map.prototype.set', this);
367 'Map.prototype.has', this);
379 'Map.prototype.delete', this);
402 'Map.prototype.size', this);
412 'Map.prototype.clear', this);
421 'Map.prototype.forEach', this);
438 %AddNamedProperty(GlobalMap.prototype, "constructor", GlobalMap, DONT_ENUM);
440 GlobalMap.prototype, toStringTagSymbol, "Map", DONT_ENUM | READ_ONLY);
444 // Set up the non-enumerable functions on the Map prototype object.
445 utils.InstallGetter(GlobalMap.prototype, "size", MapGetSize);
446 utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [