mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-10 15:25:54 -06:00
Typos in test cases
This commit is contained in:
parent
ee5d1d33c1
commit
b62f5b0dae
@ -16,13 +16,13 @@
|
||||
//// var x1;
|
||||
//// /*globalValue*/
|
||||
|
||||
interface VeriferCompletionsInJsDoc {
|
||||
interface VerifyCompletionsInJsDoc {
|
||||
verifyType(symbol: string, kind: string): void;
|
||||
verifyValue(symbol: string, kind: string): void;
|
||||
verifyTypeMember(symbol: string, kind: string): void;
|
||||
}
|
||||
|
||||
function verifyCompletionsInJsDocType(marker: string, { verifyType, verifyValue, verifyTypeMember }: VeriferCompletionsInJsDoc) {
|
||||
function verifyCompletionsInJsDocType(marker: string, { verifyType, verifyValue, verifyTypeMember }: VerifyCompletionsInJsDoc) {
|
||||
goTo.marker(marker);
|
||||
|
||||
verifyType("T", "module");
|
||||
|
||||
@ -21,13 +21,13 @@
|
||||
/////*globalValue*/
|
||||
////x./*valueMember*/
|
||||
|
||||
interface VeriferCompletionsInJsDoc {
|
||||
interface VerifyCompletionsInJsDoc {
|
||||
verifyValueOrType(symbol: string, kind: string): void;
|
||||
verifyValue(symbol: string, kind: string): void;
|
||||
verifyValueMember(symbol: string, kind: string): void;
|
||||
}
|
||||
|
||||
function verifyCompletionsInJsDocType(marker: string, { verifyValueOrType, verifyValue, verifyValueMember }: VeriferCompletionsInJsDoc) {
|
||||
function verifyCompletionsInJsDocType(marker: string, { verifyValueOrType, verifyValue, verifyValueMember }: VerifyCompletionsInJsDoc) {
|
||||
goTo.marker(marker);
|
||||
|
||||
verifyValueOrType("Foo", "class");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user