mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-10 06:41:59 -06:00
Accept baselines with new build system
This commit is contained in:
parent
d78335581e
commit
276cb583b4
@ -422,7 +422,7 @@ declare namespace ts {
|
||||
FirstJSDocNode = 288,
|
||||
LastJSDocNode = 310,
|
||||
FirstJSDocTagNode = 299,
|
||||
LastJSDocTagNode = 310
|
||||
LastJSDocTagNode = 310,
|
||||
}
|
||||
enum NodeFlags {
|
||||
None = 0,
|
||||
@ -451,7 +451,7 @@ declare namespace ts {
|
||||
ReachabilityCheckFlags = 384,
|
||||
ReachabilityAndEmitFlags = 1408,
|
||||
ContextFlags = 12679168,
|
||||
TypeExcludesFlags = 20480
|
||||
TypeExcludesFlags = 20480,
|
||||
}
|
||||
enum ModifierFlags {
|
||||
None = 0,
|
||||
@ -1008,7 +1008,7 @@ declare namespace ts {
|
||||
Octal = 32,
|
||||
HexSpecifier = 64,
|
||||
BinarySpecifier = 128,
|
||||
OctalSpecifier = 256
|
||||
OctalSpecifier = 256,
|
||||
}
|
||||
interface NumericLiteral extends LiteralExpression {
|
||||
kind: SyntaxKind.NumericLiteral;
|
||||
@ -2061,7 +2061,7 @@ declare namespace ts {
|
||||
WriteTypeParametersOrArguments = 1,
|
||||
UseOnlyExternalAliasing = 2,
|
||||
AllowAnyNodeKind = 4,
|
||||
UseAliasDefinedOutsideCurrentScope = 8
|
||||
UseAliasDefinedOutsideCurrentScope = 8,
|
||||
}
|
||||
enum TypePredicateKind {
|
||||
This = 0,
|
||||
@ -2139,7 +2139,7 @@ declare namespace ts {
|
||||
ExportHasLocal = 944,
|
||||
BlockScoped = 418,
|
||||
PropertyOrAccessor = 98308,
|
||||
ClassMember = 106500
|
||||
ClassMember = 106500,
|
||||
}
|
||||
interface Symbol {
|
||||
flags: SymbolFlags;
|
||||
@ -2247,7 +2247,7 @@ declare namespace ts {
|
||||
Instantiable = 63176704,
|
||||
StructuredOrInstantiable = 66846720,
|
||||
Narrowable = 133970943,
|
||||
NotUnionOrUnit = 67637251
|
||||
NotUnionOrUnit = 67637251,
|
||||
}
|
||||
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
|
||||
interface Type {
|
||||
@ -2294,7 +2294,7 @@ declare namespace ts {
|
||||
MarkerType = 8192,
|
||||
JSLiteral = 16384,
|
||||
FreshLiteral = 32768,
|
||||
ClassOrInterface = 3
|
||||
ClassOrInterface = 3,
|
||||
}
|
||||
interface ObjectType extends Type {
|
||||
objectFlags: ObjectFlags;
|
||||
@ -2794,7 +2794,7 @@ declare namespace ts {
|
||||
NoHoisting = 2097152,
|
||||
HasEndOfDeclarationMarker = 4194304,
|
||||
Iterator = 8388608,
|
||||
NoAsciiEscaping = 16777216
|
||||
NoAsciiEscaping = 16777216,
|
||||
}
|
||||
interface EmitHelper {
|
||||
readonly name: string;
|
||||
|
||||
16
tests/baselines/reference/api/typescript.d.ts
vendored
16
tests/baselines/reference/api/typescript.d.ts
vendored
@ -422,7 +422,7 @@ declare namespace ts {
|
||||
FirstJSDocNode = 288,
|
||||
LastJSDocNode = 310,
|
||||
FirstJSDocTagNode = 299,
|
||||
LastJSDocTagNode = 310
|
||||
LastJSDocTagNode = 310,
|
||||
}
|
||||
enum NodeFlags {
|
||||
None = 0,
|
||||
@ -451,7 +451,7 @@ declare namespace ts {
|
||||
ReachabilityCheckFlags = 384,
|
||||
ReachabilityAndEmitFlags = 1408,
|
||||
ContextFlags = 12679168,
|
||||
TypeExcludesFlags = 20480
|
||||
TypeExcludesFlags = 20480,
|
||||
}
|
||||
enum ModifierFlags {
|
||||
None = 0,
|
||||
@ -1008,7 +1008,7 @@ declare namespace ts {
|
||||
Octal = 32,
|
||||
HexSpecifier = 64,
|
||||
BinarySpecifier = 128,
|
||||
OctalSpecifier = 256
|
||||
OctalSpecifier = 256,
|
||||
}
|
||||
interface NumericLiteral extends LiteralExpression {
|
||||
kind: SyntaxKind.NumericLiteral;
|
||||
@ -2061,7 +2061,7 @@ declare namespace ts {
|
||||
WriteTypeParametersOrArguments = 1,
|
||||
UseOnlyExternalAliasing = 2,
|
||||
AllowAnyNodeKind = 4,
|
||||
UseAliasDefinedOutsideCurrentScope = 8
|
||||
UseAliasDefinedOutsideCurrentScope = 8,
|
||||
}
|
||||
enum TypePredicateKind {
|
||||
This = 0,
|
||||
@ -2139,7 +2139,7 @@ declare namespace ts {
|
||||
ExportHasLocal = 944,
|
||||
BlockScoped = 418,
|
||||
PropertyOrAccessor = 98308,
|
||||
ClassMember = 106500
|
||||
ClassMember = 106500,
|
||||
}
|
||||
interface Symbol {
|
||||
flags: SymbolFlags;
|
||||
@ -2247,7 +2247,7 @@ declare namespace ts {
|
||||
Instantiable = 63176704,
|
||||
StructuredOrInstantiable = 66846720,
|
||||
Narrowable = 133970943,
|
||||
NotUnionOrUnit = 67637251
|
||||
NotUnionOrUnit = 67637251,
|
||||
}
|
||||
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
|
||||
interface Type {
|
||||
@ -2294,7 +2294,7 @@ declare namespace ts {
|
||||
MarkerType = 8192,
|
||||
JSLiteral = 16384,
|
||||
FreshLiteral = 32768,
|
||||
ClassOrInterface = 3
|
||||
ClassOrInterface = 3,
|
||||
}
|
||||
interface ObjectType extends Type {
|
||||
objectFlags: ObjectFlags;
|
||||
@ -2794,7 +2794,7 @@ declare namespace ts {
|
||||
NoHoisting = 2097152,
|
||||
HasEndOfDeclarationMarker = 4194304,
|
||||
Iterator = 8388608,
|
||||
NoAsciiEscaping = 16777216
|
||||
NoAsciiEscaping = 16777216,
|
||||
}
|
||||
interface EmitHelper {
|
||||
readonly name: string;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user