Uh oh!
There was an error while loading. Please reload this page.
feat: add support for noImplicitThis - #13404
Conversation
devversion
left a comment
There was a problem hiding this comment.
LGTM. What strict checks are missing? At some we could also just use strict which enables all individual strict flags.
| } | ||
| function runIf(condition: boolean, runFn: Function): () => void { | ||
| function runIf(this: any, condition: boolean, runFn: Function): () => void { |
There was a problem hiding this comment.
For a second, I thought that this is an actual parameter.
crisbeto
commented
Oct 3, 2018
This should be the last one missing from the |
devversion
commented
Oct 3, 2018
@crisbeto Yeah that makes sense. I assumed they would only add these in major releases (where we can expect such breaking changes) |
Hi @crisbeto! This PR has merge conflicts due to recent upstream merges. |
aa78b13 to
8fd0b55Compare8fd0b55 to
b709be4Comparejosephperrott
commented
Oct 16, 2018
@crisbeto Looks like the e2e tests are failing on this now? I was able to reproduce the failure locally, though at a glance am unsure of the cause. |
5e00702 to
b3e6a2eComparecrisbeto
commented
Oct 17, 2018
Fixed @josephperrott. |
Adds support for the `noImplicitThis` compiler option and fixes the compilation errors.
b3e6a2e to
5154d22CompareThis issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Adds support for the
noImplicitThiscompiler option and fixes the compilation errors.