TypeScript/tests/cases/fourslash/spaceAfterConstructor.ts

12 lines
336 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts' />
////export class myController {
//// private _processId;
//// constructor (processId: number) {/*1*/
//// this._processId = processId;
//// }/*2*/
goTo.marker('2');
edit.insert('}');
goTo.marker('1');
verify.currentLineContentIs(' constructor(processId: number) {');