From: microsoft/vscode#5163
TypeScript Version: 2.2.0- 20170210
Code
class Foo {
/**
* abc docs
*
* @private
*/
abc;
/**
* xyz docs
*
* @public
*/
xyz;
}
(new Foo()).|
Expected behavior:
When triggering suggestions on instances of Foo, an entry for abc is not returned.
Actual behavior:
All members of Foo are returned. The @private annotation seems to be ignored.
From: microsoft/vscode#5163
TypeScript Version: 2.2.0- 20170210
Code
Expected behavior:
When triggering suggestions on instances of
Foo, an entry forabcis not returned.Actual behavior:
All members of
Fooare returned. The@privateannotation seems to be ignored.