Add two new tests to test for regression.

This commit is contained in:
Daniel Rosenwasser
2015-06-25 14:24:13 -04:00
parent cb48c04187
commit 70758e2920
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/// <reference path='fourslash.ts'/>
////interface I {
//// property1: number;
//// property2: string;
////}
////
////var foo: I;
////var { /**/property1 } = foo;
goTo.marker();
verify.quickInfoIs("var property1: number");

View File

@@ -0,0 +1,12 @@
/// <reference path='fourslash.ts'/>
////interface I {
//// property1: number;
//// property2: string;
////}
////
////var foo: I;
////var { property1: /**/prop1 } = foo;
goTo.marker();
verify.quickInfoIs("var prop1: number");