TypeScript/tests/cases/fourslash/goToDefinitionUndefinedSymbols.ts

12 lines
356 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts' />
2014-08-01 23:29:42 +02:00
////some/*undefinedValue*/Variable;
////var a: some/*undefinedType*/Type;
////var x = {}; x.some/*undefinedProperty*/Property;
////var a: any; a.some/*unkownProperty*/Property;
2014-07-13 01:04:16 +02:00
2014-08-01 23:29:42 +02:00
test.markers().forEach((m, i, a) => {
goTo.position(m.position, m.fileName);
verify.not.definitionLocationExists();
});