(element: Element, value: Scope)
| 58 | } |
| 59 | |
| 60 | elementMatchedValue(element: Element, value: Scope) { |
| 61 | const referenceCount = (this.scopeReferenceCounts.get(value) || 0) + 1 |
| 62 | this.scopeReferenceCounts.set(value, referenceCount) |
| 63 | if (referenceCount == 1) { |
| 64 | this.delegate.scopeConnected(value) |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | elementUnmatchedValue(element: Element, value: Scope) { |
| 69 | const referenceCount = this.scopeReferenceCounts.get(value) |
nothing calls this directly
no test coverage detected