Skip to content

Commit

Permalink
fix: add standarized entries for finished proposals
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Jan 17, 2020
1 parent 60bff6d commit f754938
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -158,7 +158,7 @@ export const BuiltIns: ObjectMap<string[]> = {
compositeKey: ["esnext.composite-key"],
compositeSymbol: ["esnext.composite-symbol", ...SymbolDependencies],
fetch: PromiseDependencies,
globalThis: ["esnext.global-this"],
globalThis: ["es.global-this", "esnext.global-this"],
parseFloat: ["es.parse-float"],
parseInt: ["es.parse-int"],
queueMicrotask: ["web.queue-microtask"],
Expand Down Expand Up @@ -205,7 +205,7 @@ export const InstanceProperties: ObjectMap<string[]> = {
lastItem: ["esnext.array.last-item"],
link: ["es.string.link"],
match: ["es.string.match", "es.regexp.exec"],
matchAll: ["esnext.string.match-all"],
matchAll: ["es.string.match-all", "esnext.string.match-all"],
map: ["es.array.map"],
name: ["es.function.name"],
padEnd: ["es.string.pad-end"],
Expand Down Expand Up @@ -355,6 +355,7 @@ export const StaticProperties: ObjectMap<ObjectMap<string | string[]>> = {
Promise: {
all: PromiseDependenciesWithIterators,
allSettled: [
"es.promise.all-settled",
"esnext.promise.all-settled",
...PromiseDependenciesWithIterators,
],
Expand Down

0 comments on commit f754938

Please sign in to comment.