Skip to content

Commit f0e0ca5

Browse files
committed
Accept new baselines
1 parent 582742e commit f0e0ca5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6719,7 +6719,7 @@ declare namespace ts {
67196719
ContainsSpread = 2097152,
67206720
ObjectRestType = 4194304,
67216721
InstantiationExpressionType = 8388608,
6722-
InstantiationResult = 268435456,
6722+
FromTypeNode = 268435456,
67236723
}
67246724
interface ObjectType extends Type {
67256725
objectFlags: ObjectFlags;

tests/baselines/reference/complexRecursiveCollections.errors.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ immutable.ts(289,22): error TS2320: Interface 'Indexed<T>' cannot simultaneously
66
immutable.ts(305,22): error TS2320: Interface 'Set<T>' cannot simultaneously extend types 'Seq<never, T>' and 'Set<T>'.
77
Named property 'size' of types 'Seq<never, T>' and 'Set<T>' are not identical.
88
immutable.ts(323,20): error TS2430: Interface 'Seq<K, V>' incorrectly extends interface 'Collection<K, V>'.
9-
The types of 'map(...).filter(...).size' are incompatible between these types.
9+
The types of 'map(...).size' are incompatible between these types.
1010
Type 'number | undefined' is not assignable to type 'number'.
1111
Type 'undefined' is not assignable to type 'number'.
1212
immutable.ts(341,22): error TS2430: Interface 'Keyed<K, V>' incorrectly extends interface 'Collection<K, V>'.
@@ -382,7 +382,7 @@ immutable.ts(391,22): error TS2430: Interface 'Set<T>' incorrectly extends inter
382382
export interface Seq<K, V> extends Collection<K, V> {
383383
~~~
384384
!!! error TS2430: Interface 'Seq<K, V>' incorrectly extends interface 'Collection<K, V>'.
385-
!!! error TS2430: The types of 'map(...).filter(...).size' are incompatible between these types.
385+
!!! error TS2430: The types of 'map(...).size' are incompatible between these types.
386386
!!! error TS2430: Type 'number | undefined' is not assignable to type 'number'.
387387
!!! error TS2430: Type 'undefined' is not assignable to type 'number'.
388388
readonly size: number | undefined;

0 commit comments

Comments
 (0)