We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5b95fc commit 012f459Copy full SHA for 012f459
src/compiler/checker.ts
@@ -1,4 +1,4 @@
1
-/// <reference path="moduleNameResolver.ts"/>
+/// <reference path="moduleNameResolver.ts"/>
2
/// <reference path="binder.ts"/>
3
4
/* @internal */
src/compiler/scanner.ts
@@ -1750,7 +1750,7 @@ namespace ts {
1750
if (isLineBreak(char) && firstNonWhitespace === 0) {
1751
firstNonWhitespace = -1;
1752
}
1753
- else if (!isWhiteSpaceLike(char)) {
+ else if (!isWhiteSpaceLike(char)) {
1754
firstNonWhitespace = pos;
1755
1756
pos++;
src/compiler/types.ts
-namespace ts {
+namespace ts {
/**
* Type of objects whose values are all of the same type.
* The `in` and `for-in` operators can *not* be safely used,
0 commit comments