(nodes, type, wsin, wsout)
| 203 | } |
| 204 | |
| 205 | function dispatchAll(nodes, type, wsin, wsout) { |
| 206 | for (var node, event = new Event(type), length = nodes.length, i = 0; i < length; (node = nodes[i++]).nodeType === 1 && dispatchTarget(node, event, type, wsin, wsout)) { |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | function dispatchTarget(node, event, type, wsin, wsout) { |
| 211 | if (observer.has(node) && !wsin.has(node)) { |
no test coverage detected