vscode/extensions/vscode-api-tests
Matt Bierner b4964bcf35 Replace some common index based for loops with for-of loops
Replaces many loops of the form:

```js
for (let i = 0; i < elements.length; ++i) {
    const i = elements[i];
   ...
}
```

with:

```js
for (const element of elements) {
    ...
}
```

Mix of a horrible regex based find/replace and manual touch ups
2019-01-03 19:11:18 -08:00
..
.vscode Task 2.0.0 2018-10-26 22:16:58 +07:00
src Replace some common index based for loops with for-of loops 2019-01-03 19:11:18 -08:00
testWorkspace [ImgBot] Optimize images 2018-11-06 20:46:03 +00:00
testWorkspace2 add API tests that run on a workspace 2018-01-26 16:16:41 +01:00
.gitignore Hello Code 2015-11-13 14:39:38 +01:00
.vscodeignore fix line endings 2018-03-05 12:47:11 +01:00
package.json 💄 integration tests 2018-09-24 15:10:16 +02:00
testworkspace.code-workspace add API tests that run on a workspace 2018-01-26 16:16:41 +01:00
tsconfig.json Onboard vscode-api-tests to use shared tsconfig 2018-10-01 16:38:29 -07:00
yarn.lock update yarn.lock files to use integrity 2018-09-30 16:34:43 +02:00