Skip to content

Commit

Permalink
Add @OverRide, remove @attribute/@group/@hero/@homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks committed Jun 17, 2019
1 parent 8af0ec4 commit ed7709f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/elements/dom-module.js
Expand Up @@ -70,6 +70,7 @@ function styleOutsideTemplateCheck(inst) {
*/
export class DomModule extends HTMLElement {

/** @override */
static get observedAttributes() { return ['id']; }

/**
Expand Down
1 change: 1 addition & 0 deletions lib/legacy/legacy-element-mixin.js
Expand Up @@ -519,6 +519,7 @@ export const LegacyElementMixin = dedupingMixin((base) => {
* @this {Element}
* @return {?Node} The element whose local dom within which this element is
* contained.
* @override
*/
get domHost() {
let root = wrap(this).getRootNode();
Expand Down
2 changes: 2 additions & 0 deletions lib/legacy/mutable-data-behavior.js
Expand Up @@ -70,6 +70,7 @@ export const MutableDataBehavior = {
* @param {*} old Previous property value
* @return {boolean} Whether the property should be considered a change
* @protected
* @override
*/
_shouldPropertyChange(property, value, old) {
return mutablePropertyChange(this, property, value, old, true);
Expand Down Expand Up @@ -142,6 +143,7 @@ export const OptionalMutableDataBehavior = {
* @param {*} old Previous property value
* @return {boolean} Whether the property should be considered a change
* @protected
* @override
*/
_shouldPropertyChange(property, value, old) {
return mutablePropertyChange(this, property, value, old, this.mutableData);
Expand Down
1 change: 1 addition & 0 deletions lib/mixins/element-mixin.js
Expand Up @@ -370,6 +370,7 @@ export const ElementMixin = dedupingMixin(base => {
}
}

/** @override */
this.prototype._template = template;
}

Expand Down
1 change: 1 addition & 0 deletions lib/utils/templatize.js
Expand Up @@ -300,6 +300,7 @@ class TemplateInstanceBase extends templateInstanceBase {
*
* @param {Event} event Event to dispatch
* @return {boolean} Always true.
* @override
*/
dispatchEvent(event) { // eslint-disable-line no-unused-vars
return true;
Expand Down

0 comments on commit ed7709f

Please sign in to comment.