Remove 'name' property which was invalid.

This commit is contained in:
Daniel Rosenwasser
2018-07-03 17:00:34 -07:00
parent 0fd587a3c3
commit 53a0f2374a
2 changed files with 3 additions and 2 deletions

View File

@@ -1515,7 +1515,9 @@ Actual: ${stringify(fullActual)}`);
"argumentCount",
];
for (const key in options) {
ts.Debug.assert(ts.contains(allKeys, key));
if (!ts.contains(allKeys, key)) {
ts.Debug.fail("Unexpected key " + key);
}
}
}

View File

@@ -553,7 +553,6 @@ declare namespace FourSlashInterface {
overloadsCount?: number;
docComment?: string;
text?: string;
name?: string;
parameterName?: string;
parameterSpan?: string;
parameterDocComment?: string;