TypeScript/tests/cases/fourslash/goToImplementationShorthandPropertyAssignment_00.ts
Andy 9d42ab983d
implementations: Use declaration name for the span (#24537)
* implementations: Use declaration name for the span

* Always get name in nodeEntry
2018-05-31 13:32:02 -07:00

44 lines
944 B
TypeScript

/// <reference path='fourslash.ts'/>
// Should handle shorthand property assignments of class constructors
//// interface Foo {
//// someFunction(): void;
//// }
////
//// interface FooConstructor {
//// new (): Foo
//// }
////
//// interface Bar {
//// Foo: FooConstructor;
//// }
////
//// var x = class /*classExpression*/Foo {
//// createBarInClassExpression(): Bar {
//// return {
//// Fo/*classExpressionRef*/o
//// };
//// }
////
//// someFunction() {}
//// }
////
//// class /*declaredClass*/Foo {
////
//// }
////
//// function createBarUsingClassDeclaration(): Bar {
//// return {
//// Fo/*declaredClassRef*/o
//// };
//// }
goTo.marker("classExpressionRef");
goTo.implementation();
verify.caretAtMarker("classExpression");
goTo.marker("declaredClassRef");
goTo.implementation();
verify.caretAtMarker("declaredClass");