* Notify that a global variable was written. * @param {string} name - Variable name
(name)
| 3157 | * @param {string} name - Variable name |
| 3158 | */ |
| 3159 | notifyGlobalSymbol(name) { |
| 3160 | var subs = this._globalSymbolSubscriptions.get(name); |
| 3161 | if (subs) { |
| 3162 | for (var effect of subs) { |
| 3163 | this._scheduleEffect(effect); |
| 3164 | } |
| 3165 | } |
| 3166 | } |
| 3167 | /** |
| 3168 | * Notify that an element-scoped variable was written. |
| 3169 | * @param {string} name - Variable name |
no test coverage detected