Skip to content

Commit

Permalink
Mark some FlattenedNodesObserver things private.
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks committed Dec 15, 2017
1 parent 22b0a96 commit 5190a89
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions lib/utils/flattened-nodes-observer.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,17 +102,26 @@
* or removals from the target's list of flattened nodes.
*/
constructor(target, callback) {
/** @type {MutationObserver} */
/**
* @type {MutationObserver}
* @private
*/
this._shadyChildrenObserver = null;
/** @type {MutationObserver} */
/**
* @type {MutationObserver}
* @private
*/
this._nativeChildrenObserver = null;
this._connected = false;
this._target = target;
this.callback = callback;
this._effectiveNodes = [];
this._observer = null;
this._scheduled = false;
/** @type {function()} */
/**
* @type {function()}
* @private
*/
this._boundSchedule = () => {
this._schedule();
};
Expand Down

0 comments on commit 5190a89

Please sign in to comment.