2020-09-11 22:25:34 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/subclass-builtins/AggregateError.case
|
|
|
|
// - src/subclass-builtins/default/statement.template
|
|
|
|
/*---
|
|
|
|
description: new SubAggregateError() instanceof AggregateError (Subclass instanceof Heritage)
|
2020-09-15 16:53:17 +02:00
|
|
|
features: [AggregateError]
|
2020-09-11 22:25:34 +02:00
|
|
|
flags: [generated]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
|
|
|
|
class Subclass extends AggregateError {}
|
|
|
|
|
|
|
|
const sub = new Subclass([]);
|
|
|
|
assert(sub instanceof Subclass);
|
|
|
|
assert(sub instanceof AggregateError);
|