Pick your poition.

This commit is contained in:
Daniel Rosenwasser 2015-07-10 17:58:49 -07:00
parent 48ca1c49c4
commit a6d17d82c2

View File

@ -3479,7 +3479,7 @@ namespace ts {
for (let element of namedImportsOrExports.elements) {
// If this is the current item we are editing right now, do not filter it out
if (element.getStart() <= position && poition <= element.getEnd()) {
if (element.getStart() <= position && position <= element.getEnd()) {
continue;
}