Avoid using for..in

This commit is contained in:
2017-03-07 18:31:07 +08:00
parent 9aec0a1d82
commit 7624d2b2fb
3 changed files with 13 additions and 5 deletions
+2 -1
View File
@@ -598,7 +598,8 @@
// because phantomSpace is not a valid character
// So we calculate along with the phantomSpace here
var phantomSpace = X;
for( var i in lines )
var lc = lines.length;
for( var i = 0; i < lc; i ++ )
{
/** @type {Components.Vim.LineBuffer} */
var vline = lines[ i ];