TypeScript/tests/cases/fourslash/codeFixClassImplementInterfaceInNamespace.ts
Arthur Ozga 2fd3229568 Various fixes
* create type reference node from type parameters
* expose index signature synthesis
* widen types in helpers
* format unions
* use deep cloning
2017-03-14 14:35:23 -07:00

18 lines
332 B
TypeScript

/// <reference path='fourslash.ts' />
//// namespace N1 {
//// export interface I1 {
//// f1():string;
//// }
//// }
//// interface I1 {
//// f1();
//// }
////
//// class C1 implements N1.I1 {[| |]}
verify.rangeAfterCodeFix(`f1(): string{
throw new Error("Method not implemented.");
}
`);