Typos in test cases

This commit is contained in:
Sheetal Nandi 2017-06-05 17:09:40 -07:00
parent ee5d1d33c1
commit b62f5b0dae
2 changed files with 4 additions and 4 deletions

View file

@ -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");

View file

@ -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");