* @returns {EventTarget[]} The composed path of this event.
()
| 9867 | * @returns {EventTarget[]} The composed path of this event. |
| 9868 | */ |
| 9869 | composedPath() { |
| 9870 | const currentTarget = pd(this).currentTarget; |
| 9871 | if (currentTarget == null) { |
| 9872 | return []; |
| 9873 | } |
| 9874 | return [currentTarget]; |
| 9875 | }, |
| 9876 | /** |
| 9877 | * Constant of NONE. |
| 9878 | * @type {number} |
nothing calls this directly
no test coverage detected
searching dependent graphs…