From 5190a89c22ac45c5d7fc39fa4c2fb58860a0f845 Mon Sep 17 00:00:00 2001 From: Alexander Marks Date: Fri, 15 Dec 2017 14:34:44 -0800 Subject: [PATCH] Mark some FlattenedNodesObserver things private. --- lib/utils/flattened-nodes-observer.html | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/utils/flattened-nodes-observer.html b/lib/utils/flattened-nodes-observer.html index 78f74127c5..9ea217fc70 100644 --- a/lib/utils/flattened-nodes-observer.html +++ b/lib/utils/flattened-nodes-observer.html @@ -102,9 +102,15 @@ * 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; @@ -112,7 +118,10 @@ this._effectiveNodes = []; this._observer = null; this._scheduled = false; - /** @type {function()} */ + /** + * @type {function()} + * @private + */ this._boundSchedule = () => { this._schedule(); };