Skip to content

Commit e7e020e

Browse files
committed
PR feedback - comments and whitespace adjustments
1 parent 133a86a commit e7e020e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/tsc.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ namespace ts {
191191
return sys.exit(ExitStatus.Success);
192192
}
193193

194-
if (commandLine.options.watch && commandLine.options.hasOwnProperty('watch')) { // FireFox has Object.prototype.watch
194+
// Firefox has Object.prototype.watch
195+
if (commandLine.options.watch && commandLine.options.hasOwnProperty('watch')) {
195196
if (!sys.watchFile) {
196197
reportDiagnostic(createCompilerDiagnostic(Diagnostics.The_current_host_does_not_support_the_0_option, "--watch"));
197198
return sys.exit(ExitStatus.DiagnosticsPresent_OutputsSkipped);

0 commit comments

Comments
 (0)