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