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