(handler = null)
| 118 | // handlers can use to always return the same value. This then means that the handler itself can |
| 119 | // be implemented without regard to its return value. |
| 120 | alwaysContinueBubbling(handler = null) { |
| 121 | if (typeof handler === "function") { |
| 122 | handler(); |
| 123 | } |
| 124 | return this.continueBubbling; |
| 125 | } |
| 126 | |
| 127 | alwaysSuppressPropagation(handler = null) { |
| 128 | // TODO(philc): Shorten this. |
no outgoing calls
no test coverage detected