TypeScript/tests/cases/fourslash/incrementalResolveFunctionPropertyAssignment.ts
Cyrus Najmabadi eed6f0deca Use an output format for quickinfo that more closely matches the original source.
i.e. use  "var v: string" instead of "(var) v: string".

The parens case should only be used when we're using an english description instead of
an actual language construct.
2015-03-24 00:16:49 -07:00

28 lines
No EOL
842 B
TypeScript

/// <reference path="fourslash.ts" />
////function bar(indexer: { getLength(): number; getTypeAtIndex(index: number): string; }): string {
//// return indexer.getTypeAtIndex(indexer.getLength() - 1);
////}
////function foo(a: string[]) {
//// return bar({
//// getLength(): number {
//// return "a.length";
//// },
//// getTypeAtIndex(index: number) {
//// switch (index) {
//// case 0: return a[0];
//// case 1: return a[1];
//// case 2: return a[2];
//// default: return "invalid";
//// }
//// }
//// });
////}
////var val = foo(["myString1", "myString2"]);
/////*1*/val;
goTo.marker('1');
verify.quickInfoIs("var val: string");
// TypeCheck
verify.numberOfErrorsInCurrentFile(1);