@@ -203,7 +203,6 @@ declare namespace primordials {
203
203
export const DatePrototypeToTimeString : UncurryThis < typeof Date . prototype . toTimeString >
204
204
export const DatePrototypeToISOString : UncurryThis < typeof Date . prototype . toISOString >
205
205
export const DatePrototypeToUTCString : UncurryThis < typeof Date . prototype . toUTCString >
206
- export const DatePrototypeToGMTString : UncurryThis < typeof Date . prototype . toGMTString >
207
206
export const DatePrototypeGetDate : UncurryThis < typeof Date . prototype . getDate >
208
207
export const DatePrototypeSetDate : UncurryThis < typeof Date . prototype . setDate >
209
208
export const DatePrototypeGetDay : UncurryThis < typeof Date . prototype . getDay >
@@ -238,17 +237,15 @@ declare namespace primordials {
238
237
export const DatePrototypeGetUTCSeconds : UncurryThis < typeof Date . prototype . getUTCSeconds >
239
238
export const DatePrototypeSetUTCSeconds : UncurryThis < typeof Date . prototype . setUTCSeconds >
240
239
export const DatePrototypeValueOf : UncurryThis < typeof Date . prototype . valueOf >
241
- export const DatePrototypeGetYear : UncurryThis < typeof Date . prototype . getYear >
242
- export const DatePrototypeSetYear : UncurryThis < typeof Date . prototype . setYear >
243
240
export const DatePrototypeToJSON : UncurryThis < typeof Date . prototype . toJSON >
244
241
export const DatePrototypeToLocaleString : UncurryThis < typeof Date . prototype . toLocaleString >
245
242
export const DatePrototypeToLocaleDateString : UncurryThis < typeof Date . prototype . toLocaleDateString >
246
243
export const DatePrototypeToLocaleTimeString : UncurryThis < typeof Date . prototype . toLocaleTimeString >
247
244
export const DatePrototypeSymbolToPrimitive : UncurryMethod < typeof Date . prototype , typeof Symbol . toPrimitive > ;
248
245
export import Error = globalThis . Error ;
249
246
export const ErrorPrototype : typeof Error . prototype
247
+ // @ts -ignore
250
248
export const ErrorCaptureStackTrace : typeof Error . captureStackTrace
251
- export const ErrorStackTraceLimit : typeof Error . stackTraceLimit
252
249
export const ErrorPrototypeToString : UncurryThis < typeof Error . prototype . toString >
253
250
export import EvalError = globalThis . EvalError ;
254
251
export const EvalErrorPrototype : typeof EvalError . prototype
@@ -332,11 +329,7 @@ declare namespace primordials {
332
329
export const ObjectEntries : typeof Object . entries
333
330
export const ObjectFromEntries : typeof Object . fromEntries
334
331
export const ObjectValues : typeof Object . values
335
- export const ObjectPrototype__defineGetter__ : UncurryThis < typeof Object . prototype . __defineGetter__ >
336
- export const ObjectPrototype__defineSetter__ : UncurryThis < typeof Object . prototype . __defineSetter__ >
337
332
export const ObjectPrototypeHasOwnProperty : UncurryThis < typeof Object . prototype . hasOwnProperty >
338
- export const ObjectPrototype__lookupGetter__ : UncurryThis < typeof Object . prototype . __lookupGetter__ >
339
- export const ObjectPrototype__lookupSetter__ : UncurryThis < typeof Object . prototype . __lookupSetter__ >
340
333
export const ObjectPrototypeIsPrototypeOf : UncurryThis < typeof Object . prototype . isPrototypeOf >
341
334
export const ObjectPrototypePropertyIsEnumerable : UncurryThis < typeof Object . prototype . propertyIsEnumerable >
342
335
export const ObjectPrototypeToString : UncurryThis < typeof Object . prototype . toString >
0 commit comments