Respond to code review comments

This commit is contained in:
Mohamed Hegazy
2016-05-18 16:37:14 -07:00
parent 08fed17053
commit d73dd06e4b
7 changed files with 14 additions and 14 deletions

View File

@@ -447,7 +447,7 @@
"category": "Error",
"code": 1147
},
"Cannot use 'import', 'export' or module augmentation when compiling with '--module' is 'none'.": {
"Cannot use imports, exports or module augmentations when '--module' is 'none'.": {
"category": "Error",
"code": 1148
},
@@ -2752,7 +2752,7 @@
"category": "Message",
"code": 6130
},
"Cannot compile modules using option '{0}' unless the '--module' flag is provided with a valid module type.": {
"Cannot compile modules using option '{0}' unless the '--module' flag is 'amd' or 'system'.": {
"category": "Error",
"code": 6131
},

View File

@@ -2080,7 +2080,7 @@ namespace ts {
else if (firstExternalModuleSourceFile && languageVersion < ScriptTarget.ES6 && options.module === ModuleKind.None) {
// We cannot use createDiagnosticFromNode because nodes do not have parents yet
const span = getErrorSpanForNode(firstExternalModuleSourceFile, firstExternalModuleSourceFile.externalModuleIndicator);
programDiagnostics.add(createFileDiagnostic(firstExternalModuleSourceFile, span.start, span.length, Diagnostics.Cannot_use_import_export_or_module_augmentation_when_compiling_with_module_is_none));
programDiagnostics.add(createFileDiagnostic(firstExternalModuleSourceFile, span.start, span.length, Diagnostics.Cannot_use_imports_exports_or_module_augmentations_when_module_is_none));
}
// Cannot specify module gen target of es6 when below es6
@@ -2095,7 +2095,7 @@ namespace ts {
}
else if (options.module === undefined && firstExternalModuleSourceFile) {
const span = getErrorSpanForNode(firstExternalModuleSourceFile, firstExternalModuleSourceFile.externalModuleIndicator);
programDiagnostics.add(createFileDiagnostic(firstExternalModuleSourceFile, span.start, span.length, Diagnostics.Cannot_compile_modules_using_option_0_unless_the_module_flag_is_provided_with_a_valid_module_type, options.out ? "out" : "outFile"));
programDiagnostics.add(createFileDiagnostic(firstExternalModuleSourceFile, span.start, span.length, Diagnostics.Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system, options.out ? "out" : "outFile"));
}
}