mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
Addressed PR feedback
This commit is contained in:
@@ -6,10 +6,30 @@
|
||||
|
||||
////[<I>null].reduce(({/*2*/}, b) => b);
|
||||
|
||||
////interface Foo {
|
||||
//// m(x: { x1: number, x2: number }): void;
|
||||
//// prop: I;
|
||||
////}
|
||||
////let x: Foo = {
|
||||
//// m({ /*3*/ }) {
|
||||
//// },
|
||||
//// get prop(): I { return undefined; },
|
||||
//// set prop({ /*4*/ }) {
|
||||
//// }
|
||||
////};
|
||||
|
||||
goTo.marker("1");
|
||||
verify.completionListContains("x1");
|
||||
verify.completionListContains("x2");
|
||||
|
||||
goTo.marker("2");
|
||||
verify.completionListContains("x1");
|
||||
verify.completionListContains("x2");
|
||||
|
||||
goTo.marker("3");
|
||||
verify.completionListContains("x1");
|
||||
verify.completionListContains("x2");
|
||||
|
||||
goTo.marker("4");
|
||||
verify.completionListContains("x1");
|
||||
verify.completionListContains("x2");
|
||||
Reference in New Issue
Block a user