Accept new baselines

This commit is contained in:
Anders Hejlsberg
2018-01-15 11:06:40 -08:00
parent e8d1740da8
commit 15baf0ead5
2 changed files with 22 additions and 12 deletions

View File

@@ -2021,7 +2021,8 @@ declare namespace ts {
Index = 524288,
IndexedAccess = 1048576,
Conditional = 2097152,
NonPrimitive = 67108864,
Substitution = 4194304,
NonPrimitive = 134217728,
Literal = 224,
Unit = 13536,
StringOrNumberLiteral = 96,
@@ -2034,12 +2035,12 @@ declare namespace ts {
UnionOrIntersection = 393216,
StructuredType = 458752,
TypeVariable = 1081344,
InstantiableNonPrimitive = 3178496,
InstantiableNonPrimitive = 7372800,
InstantiablePrimitive = 524288,
Instantiable = 3702784,
StructuredOrInstantiable = 4161536,
Narrowable = 71272191,
NotUnionOrUnit = 67174913,
Instantiable = 7897088,
StructuredOrInstantiable = 8355840,
Narrowable = 142575359,
NotUnionOrUnit = 134283777,
}
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
interface Type {
@@ -2145,6 +2146,10 @@ declare namespace ts {
trueType: Type;
falseType: Type;
}
interface SubstitutionType extends InstantiableType {
typeParameter: TypeParameter;
substitute: Type;
}
enum SignatureKind {
Call = 0,
Construct = 1,

View File

@@ -2021,7 +2021,8 @@ declare namespace ts {
Index = 524288,
IndexedAccess = 1048576,
Conditional = 2097152,
NonPrimitive = 67108864,
Substitution = 4194304,
NonPrimitive = 134217728,
Literal = 224,
Unit = 13536,
StringOrNumberLiteral = 96,
@@ -2034,12 +2035,12 @@ declare namespace ts {
UnionOrIntersection = 393216,
StructuredType = 458752,
TypeVariable = 1081344,
InstantiableNonPrimitive = 3178496,
InstantiableNonPrimitive = 7372800,
InstantiablePrimitive = 524288,
Instantiable = 3702784,
StructuredOrInstantiable = 4161536,
Narrowable = 71272191,
NotUnionOrUnit = 67174913,
Instantiable = 7897088,
StructuredOrInstantiable = 8355840,
Narrowable = 142575359,
NotUnionOrUnit = 134283777,
}
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
interface Type {
@@ -2145,6 +2146,10 @@ declare namespace ts {
trueType: Type;
falseType: Type;
}
interface SubstitutionType extends InstantiableType {
typeParameter: TypeParameter;
substitute: Type;
}
enum SignatureKind {
Call = 0,
Construct = 1,