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 0fd587a commit 53a0f23Copy full SHA for 53a0f23
src/harness/fourslash.ts
@@ -1515,7 +1515,9 @@ Actual: ${stringify(fullActual)}`);
1515
"argumentCount",
1516
];
1517
for (const key in options) {
1518
- ts.Debug.assert(ts.contains(allKeys, key));
+ if (!ts.contains(allKeys, key)) {
1519
+ ts.Debug.fail("Unexpected key " + key);
1520
+ }
1521
}
1522
1523
tests/cases/fourslash/fourslash.ts
@@ -553,7 +553,6 @@ declare namespace FourSlashInterface {
553
overloadsCount?: number;
554
docComment?: string;
555
text?: string;
556
- name?: string;
557
parameterName?: string;
558
parameterSpan?: string;
559
parameterDocComment?: string;
0 commit comments