do not use for-of and const

https://github.com/Microsoft/TypeScript/issues/10220
This commit is contained in:
Johannes Rieken
2016-08-09 10:41:21 +02:00
parent 28550cff75
commit fbebca5527
9 changed files with 15 additions and 15 deletions

View File

@@ -67,7 +67,7 @@ class Trait<T> implements IDisposable {
const end = start + deleteCount;
const indexes = [];
for (const index of indexes) {
for (let index of indexes) {
if (index >= start && index < end) {
continue;
}