-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get closure-type-checking running again #360
Conversation
5842496
to
30f3793
Compare
@@ -1,6 +1,6 @@ | |||
language: node_js | |||
node_js: | |||
- "5.0" | |||
- "5.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why does this matter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, if this was for the build failure, this won't help :) Rest parameters were added in 6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed this in the method.
reviewed! Current build failure should be fixed by not using rest parameters while we still support node 5. |
@brendankenny this should be good to go now. I've got more fixes in a follow-up patch. |
nice job! LGTM |
@@ -206,7 +206,7 @@ class Aggregate { | |||
// TODO(paullewis): Remove once coming soon audits have landed. | |||
if (expected[e].comingSoon) { | |||
subItems.push({ | |||
value: String.raw`¯\_(ツ)_/¯`, | |||
value: '¯\\_(ツ)_/¯', // TODO(samthor): Patch going to Closure, String.raw is badly typed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noooooooooo!
Fine.
@brendankenny
This gets us up and running again, at least with warnings, not errors.
This works around #954 in an interesting way, but I have some thoughts on fixing that properly too.