* Notify that a global variable was written. * @param {string} name - Variable name
(name)
| 278 | * @param {string} name - Variable name |
| 279 | */ |
| 280 | notifyGlobalSymbol(name) { |
| 281 | var subs = this._globalSymbolSubscriptions.get(name); |
| 282 | if (subs) { |
| 283 | for (var effect of subs) { |
| 284 | this._scheduleEffect(effect); |
| 285 | } |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | /** |
| 290 | * Notify that an element-scoped variable was written. |
no test coverage detected