-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Closure warnings #4684
Merged
Merged
Closure warnings #4684
Changes from 46 commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
80f5442
fix some closure warnings.
37abc4e
Fix some closure warnings.
kevinpschaaf 89b1230
automate generating closure externs
dfreedm 5185554
Fix some closure warnings.
f1a1498
Fix some closure warnings.
fa9823f
Fix more closure warnings.
kevinpschaaf 346e2d5
gesture fixes
dfreedm b3dfd38
slighly better typing for mixin funcion
dfreedm 2627e63
Fix more closure warnings.
0b22959
Fix more closure warnings.
kevinpschaaf b686cd7
Fix more closure warnings.
0c3e3c5
Fix more closure warnings.
d0f7812
Fix more closure warnings
kevinpschaaf f04d631
Fix more closure warnings
kevinpschaaf 2c9ffac
Fix dedupingMixin
6a995a2
set `isAttached` constructor (for closure) but set to undefined so no…
c1eda7a
LegacyElementMixin to `@unrestricted`
f15e4ee
initialize properties in `_initializeProperties` rather than `constru…
c3da507
inline cachingMixin into deduplicatingMixin
dfreedm 0b15293
fix typing for Polymer.Element
dfreedm f821e46
remove `TemplateStamp`’s implicit dependency on `_initializeProperties`
c0ddc60
remove all "global this" warnings
dfreedm e5de178
fix lint error
dfreedm 4698253
Merge branch 'master' into closure-warnings
dfreedm 7abd703
ensure latest closure, stay on polymer-build 1.1 until warnings can b…
dfreedm db38807
Merge branch 'master' into closure-warnings
dfreedm e927bc9
update externs for merge, update dependencies
dfreedm a8a57bf
[ci skip] generating externs should be explicit
dfreedm 3a80ad8
[ci skip] paramaterize entries for closure task
dfreedm c34ef0b
reduce closure warnings in TemplateStamp
3591be8
Reduce closure warnings in PropertyAccessors
kevinpschaaf bc504f6
Fix fn binding error
kevinpschaaf 0744364
fix dom-module related errors
ec3e948
Fix template.assetpath with typedef
dfreedm c0a816f
Fix some ElementMixin warnings.
7036fc2
Merge branch 'master' into closure-warnings
dfreedm abc229e
rebaseline warnings with NTI specific warnings disabled, for now
dfreedm 872e1c2
more fixes
dfreedm de87c58
Down to 30ish warnings, need PolymerPass v2
dfreedm 047c177
Merge branch 'master' into closure-warnings
dfreedm ba72012
fix eslint warnings
dfreedm 9bd8920
last two stragglers
dfreedm c40eff6
Merge branch 'master' into closure-warnings
dfreedm f7e2bd9
Merge branch 'master' into closure-warnings
dfreedm 344ebb4
update closure log
dfreedm 3b7eedb
remove polymer-element dependency introduced by a merge conflict
dfreedm 7612df6
remove PolymerPropertyEffects type, inline DataTrigger and DataEffect…
dfreedm 9b7e184
Merge branch 'master' into closure-warnings
dfreedm 2efccb9
Remove @suppress {missingProperties}
dfreedm 3e14a1d
zero warnings left
dfreedm 4465381
address some concerns from kschaaf
dfreedm 72022f2
[ci skip] clean up mixin fn and regen externs
dfreedm 8804307
Meaningful closure fixes from @ChadKillingsworth
dfreedm 0cb560a
[ci skip] remove one new closure warning for updating closure
dfreedm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This actually seems like a bug, since the mixin implements
static get properties()
... it should extendPolymer.ElementMixin
I think (and revert the<link rel="import" href="../../polymer-element.html">
)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.
Seems reasonable to me. That seems like a bug in master as well then.