mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Accepting new baselines
This commit is contained in:
@@ -313,15 +313,16 @@ declare module "typescript" {
|
||||
Private = 32,
|
||||
Protected = 64,
|
||||
Static = 128,
|
||||
MultiLine = 256,
|
||||
Synthetic = 512,
|
||||
DeclarationFile = 1024,
|
||||
Let = 2048,
|
||||
Const = 4096,
|
||||
OctalLiteral = 8192,
|
||||
Modifier = 243,
|
||||
Default = 256,
|
||||
MultiLine = 512,
|
||||
Synthetic = 1024,
|
||||
DeclarationFile = 2048,
|
||||
Let = 4096,
|
||||
Const = 8192,
|
||||
OctalLiteral = 16384,
|
||||
Modifier = 499,
|
||||
AccessibilityModifier = 112,
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
StrictMode = 1,
|
||||
@@ -924,7 +925,7 @@ declare module "typescript" {
|
||||
errorModuleName?: string;
|
||||
}
|
||||
interface EmitResolver {
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
hasExportDefaultValue(node: SourceFile): boolean;
|
||||
isReferencedImportDeclaration(node: Node): boolean;
|
||||
|
||||
@@ -954,31 +954,34 @@ declare module "typescript" {
|
||||
Static = 128,␍
|
||||
>Static : NodeFlags
|
||||
|
||||
MultiLine = 256,␍
|
||||
Default = 256,␍
|
||||
>Default : NodeFlags
|
||||
|
||||
MultiLine = 512,␍
|
||||
>MultiLine : NodeFlags
|
||||
|
||||
Synthetic = 512,␍
|
||||
Synthetic = 1024,␍
|
||||
>Synthetic : NodeFlags
|
||||
|
||||
DeclarationFile = 1024,␍
|
||||
DeclarationFile = 2048,␍
|
||||
>DeclarationFile : NodeFlags
|
||||
|
||||
Let = 2048,␍
|
||||
Let = 4096,␍
|
||||
>Let : NodeFlags
|
||||
|
||||
Const = 4096,␍
|
||||
Const = 8192,␍
|
||||
>Const : NodeFlags
|
||||
|
||||
OctalLiteral = 8192,␍
|
||||
OctalLiteral = 16384,␍
|
||||
>OctalLiteral : NodeFlags
|
||||
|
||||
Modifier = 243,␍
|
||||
Modifier = 499,␍
|
||||
>Modifier : NodeFlags
|
||||
|
||||
AccessibilityModifier = 112,␍
|
||||
>AccessibilityModifier : NodeFlags
|
||||
|
||||
BlockScoped = 6144,␍
|
||||
BlockScoped = 12288,␍
|
||||
>BlockScoped : NodeFlags
|
||||
}␍
|
||||
const enum ParserContextFlags {␍
|
||||
@@ -2954,13 +2957,10 @@ declare module "typescript" {
|
||||
interface EmitResolver {␍
|
||||
>EmitResolver : EmitResolver
|
||||
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;␍
|
||||
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
|
||||
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
|
||||
>ModuleDeclaration : ModuleDeclaration
|
||||
>EnumDeclaration : EnumDeclaration
|
||||
>ImportDeclaration : ImportDeclaration
|
||||
>ExportDeclaration : ExportDeclaration
|
||||
getGeneratedNameForNode(node: Node): string;␍
|
||||
>getGeneratedNameForNode : (node: Node) => string
|
||||
>node : Node
|
||||
>Node : Node
|
||||
|
||||
getExpressionNameSubstitution(node: Identifier): string;␍
|
||||
>getExpressionNameSubstitution : (node: Identifier) => string
|
||||
|
||||
@@ -344,15 +344,16 @@ declare module "typescript" {
|
||||
Private = 32,
|
||||
Protected = 64,
|
||||
Static = 128,
|
||||
MultiLine = 256,
|
||||
Synthetic = 512,
|
||||
DeclarationFile = 1024,
|
||||
Let = 2048,
|
||||
Const = 4096,
|
||||
OctalLiteral = 8192,
|
||||
Modifier = 243,
|
||||
Default = 256,
|
||||
MultiLine = 512,
|
||||
Synthetic = 1024,
|
||||
DeclarationFile = 2048,
|
||||
Let = 4096,
|
||||
Const = 8192,
|
||||
OctalLiteral = 16384,
|
||||
Modifier = 499,
|
||||
AccessibilityModifier = 112,
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
StrictMode = 1,
|
||||
@@ -955,7 +956,7 @@ declare module "typescript" {
|
||||
errorModuleName?: string;
|
||||
}
|
||||
interface EmitResolver {
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
hasExportDefaultValue(node: SourceFile): boolean;
|
||||
isReferencedImportDeclaration(node: Node): boolean;
|
||||
|
||||
@@ -1100,31 +1100,34 @@ declare module "typescript" {
|
||||
Static = 128,
|
||||
>Static : NodeFlags
|
||||
|
||||
MultiLine = 256,
|
||||
Default = 256,
|
||||
>Default : NodeFlags
|
||||
|
||||
MultiLine = 512,
|
||||
>MultiLine : NodeFlags
|
||||
|
||||
Synthetic = 512,
|
||||
Synthetic = 1024,
|
||||
>Synthetic : NodeFlags
|
||||
|
||||
DeclarationFile = 1024,
|
||||
DeclarationFile = 2048,
|
||||
>DeclarationFile : NodeFlags
|
||||
|
||||
Let = 2048,
|
||||
Let = 4096,
|
||||
>Let : NodeFlags
|
||||
|
||||
Const = 4096,
|
||||
Const = 8192,
|
||||
>Const : NodeFlags
|
||||
|
||||
OctalLiteral = 8192,
|
||||
OctalLiteral = 16384,
|
||||
>OctalLiteral : NodeFlags
|
||||
|
||||
Modifier = 243,
|
||||
Modifier = 499,
|
||||
>Modifier : NodeFlags
|
||||
|
||||
AccessibilityModifier = 112,
|
||||
>AccessibilityModifier : NodeFlags
|
||||
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
>BlockScoped : NodeFlags
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
@@ -3100,13 +3103,10 @@ declare module "typescript" {
|
||||
interface EmitResolver {
|
||||
>EmitResolver : EmitResolver
|
||||
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
|
||||
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
|
||||
>ModuleDeclaration : ModuleDeclaration
|
||||
>EnumDeclaration : EnumDeclaration
|
||||
>ImportDeclaration : ImportDeclaration
|
||||
>ExportDeclaration : ExportDeclaration
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
>getGeneratedNameForNode : (node: Node) => string
|
||||
>node : Node
|
||||
>Node : Node
|
||||
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
>getExpressionNameSubstitution : (node: Identifier) => string
|
||||
|
||||
@@ -345,15 +345,16 @@ declare module "typescript" {
|
||||
Private = 32,
|
||||
Protected = 64,
|
||||
Static = 128,
|
||||
MultiLine = 256,
|
||||
Synthetic = 512,
|
||||
DeclarationFile = 1024,
|
||||
Let = 2048,
|
||||
Const = 4096,
|
||||
OctalLiteral = 8192,
|
||||
Modifier = 243,
|
||||
Default = 256,
|
||||
MultiLine = 512,
|
||||
Synthetic = 1024,
|
||||
DeclarationFile = 2048,
|
||||
Let = 4096,
|
||||
Const = 8192,
|
||||
OctalLiteral = 16384,
|
||||
Modifier = 499,
|
||||
AccessibilityModifier = 112,
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
StrictMode = 1,
|
||||
@@ -956,7 +957,7 @@ declare module "typescript" {
|
||||
errorModuleName?: string;
|
||||
}
|
||||
interface EmitResolver {
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
hasExportDefaultValue(node: SourceFile): boolean;
|
||||
isReferencedImportDeclaration(node: Node): boolean;
|
||||
|
||||
@@ -1050,31 +1050,34 @@ declare module "typescript" {
|
||||
Static = 128,
|
||||
>Static : NodeFlags
|
||||
|
||||
MultiLine = 256,
|
||||
Default = 256,
|
||||
>Default : NodeFlags
|
||||
|
||||
MultiLine = 512,
|
||||
>MultiLine : NodeFlags
|
||||
|
||||
Synthetic = 512,
|
||||
Synthetic = 1024,
|
||||
>Synthetic : NodeFlags
|
||||
|
||||
DeclarationFile = 1024,
|
||||
DeclarationFile = 2048,
|
||||
>DeclarationFile : NodeFlags
|
||||
|
||||
Let = 2048,
|
||||
Let = 4096,
|
||||
>Let : NodeFlags
|
||||
|
||||
Const = 4096,
|
||||
Const = 8192,
|
||||
>Const : NodeFlags
|
||||
|
||||
OctalLiteral = 8192,
|
||||
OctalLiteral = 16384,
|
||||
>OctalLiteral : NodeFlags
|
||||
|
||||
Modifier = 243,
|
||||
Modifier = 499,
|
||||
>Modifier : NodeFlags
|
||||
|
||||
AccessibilityModifier = 112,
|
||||
>AccessibilityModifier : NodeFlags
|
||||
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
>BlockScoped : NodeFlags
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
@@ -3050,13 +3053,10 @@ declare module "typescript" {
|
||||
interface EmitResolver {
|
||||
>EmitResolver : EmitResolver
|
||||
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
|
||||
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
|
||||
>ModuleDeclaration : ModuleDeclaration
|
||||
>EnumDeclaration : EnumDeclaration
|
||||
>ImportDeclaration : ImportDeclaration
|
||||
>ExportDeclaration : ExportDeclaration
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
>getGeneratedNameForNode : (node: Node) => string
|
||||
>node : Node
|
||||
>Node : Node
|
||||
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
>getExpressionNameSubstitution : (node: Identifier) => string
|
||||
|
||||
@@ -382,15 +382,16 @@ declare module "typescript" {
|
||||
Private = 32,
|
||||
Protected = 64,
|
||||
Static = 128,
|
||||
MultiLine = 256,
|
||||
Synthetic = 512,
|
||||
DeclarationFile = 1024,
|
||||
Let = 2048,
|
||||
Const = 4096,
|
||||
OctalLiteral = 8192,
|
||||
Modifier = 243,
|
||||
Default = 256,
|
||||
MultiLine = 512,
|
||||
Synthetic = 1024,
|
||||
DeclarationFile = 2048,
|
||||
Let = 4096,
|
||||
Const = 8192,
|
||||
OctalLiteral = 16384,
|
||||
Modifier = 499,
|
||||
AccessibilityModifier = 112,
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
StrictMode = 1,
|
||||
@@ -993,7 +994,7 @@ declare module "typescript" {
|
||||
errorModuleName?: string;
|
||||
}
|
||||
interface EmitResolver {
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
hasExportDefaultValue(node: SourceFile): boolean;
|
||||
isReferencedImportDeclaration(node: Node): boolean;
|
||||
|
||||
@@ -1223,31 +1223,34 @@ declare module "typescript" {
|
||||
Static = 128,
|
||||
>Static : NodeFlags
|
||||
|
||||
MultiLine = 256,
|
||||
Default = 256,
|
||||
>Default : NodeFlags
|
||||
|
||||
MultiLine = 512,
|
||||
>MultiLine : NodeFlags
|
||||
|
||||
Synthetic = 512,
|
||||
Synthetic = 1024,
|
||||
>Synthetic : NodeFlags
|
||||
|
||||
DeclarationFile = 1024,
|
||||
DeclarationFile = 2048,
|
||||
>DeclarationFile : NodeFlags
|
||||
|
||||
Let = 2048,
|
||||
Let = 4096,
|
||||
>Let : NodeFlags
|
||||
|
||||
Const = 4096,
|
||||
Const = 8192,
|
||||
>Const : NodeFlags
|
||||
|
||||
OctalLiteral = 8192,
|
||||
OctalLiteral = 16384,
|
||||
>OctalLiteral : NodeFlags
|
||||
|
||||
Modifier = 243,
|
||||
Modifier = 499,
|
||||
>Modifier : NodeFlags
|
||||
|
||||
AccessibilityModifier = 112,
|
||||
>AccessibilityModifier : NodeFlags
|
||||
|
||||
BlockScoped = 6144,
|
||||
BlockScoped = 12288,
|
||||
>BlockScoped : NodeFlags
|
||||
}
|
||||
const enum ParserContextFlags {
|
||||
@@ -3223,13 +3226,10 @@ declare module "typescript" {
|
||||
interface EmitResolver {
|
||||
>EmitResolver : EmitResolver
|
||||
|
||||
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
|
||||
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
|
||||
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
|
||||
>ModuleDeclaration : ModuleDeclaration
|
||||
>EnumDeclaration : EnumDeclaration
|
||||
>ImportDeclaration : ImportDeclaration
|
||||
>ExportDeclaration : ExportDeclaration
|
||||
getGeneratedNameForNode(node: Node): string;
|
||||
>getGeneratedNameForNode : (node: Node) => string
|
||||
>node : Node
|
||||
>Node : Node
|
||||
|
||||
getExpressionNameSubstitution(node: Identifier): string;
|
||||
>getExpressionNameSubstitution : (node: Identifier) => string
|
||||
|
||||
Reference in New Issue
Block a user