* Notify that a global variable was written. * @param {string} name - Variable name
(name)
| 3092 | * @param {string} name - Variable name |
| 3093 | */ |
| 3094 | notifyGlobalSymbol(name) { |
| 3095 | var subs = this._globalSubscriptions.get(name); |
| 3096 | if (subs) { |
| 3097 | for (var effect of subs) { |
| 3098 | this._scheduleEffect(effect); |
| 3099 | } |
| 3100 | } |
| 3101 | } |
| 3102 | /** |
| 3103 | * Notify that an element-scoped variable was written. |
| 3104 | * @param {string} name - Variable name |
no test coverage detected