mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
perf(ext/event): replace ReflectHas with object lookup (#20190)
This PR optimizes event dispatch by replacing `ReflectHas` with object lookup. I also made `isSlottable` return `false` since AFAIK there aren't any slottables nodes in Deno **This PR** ``` cpu: 13th Gen Intel(R) Core(TM) i9-13900H runtime: deno 1.36.1 (x86_64-unknown-linux-gnu) benchmark time (avg) iter/s (min … max) p75 p99 p995 --------------------------------------------------------------------- ----------------------------- event dispatch 80.46 ns/iter 12,428,739.4 (73.84 ns … 120.07 ns) 81.82 ns 86.34 ns 91.18 ns ``` **main** ``` cpu: 13th Gen Intel(R) Core(TM) i9-13900H runtime: deno 1.36.1 (x86_64-unknown-linux-gnu) benchmark time (avg) iter/s (min … max) p75 p99 p995 --------------------------------------------------------------------- ----------------------------- event dispatch 102.66 ns/iter 9,741,319.6 (96.66 ns … 132.88 ns) 104.18 ns 114.58 ns 118.45 ns ``` ```js const tg = new EventTarget(); const ev = new Event("foo"); const listener = () => {}; tg.addEventListener("foo", listener); Deno.bench("event dispatch ", () => { tg.dispatchEvent(ev); }); ``` towards https://github.com/denoland/deno/issues/20167
This commit is contained in:
parent
a48ec1d563
commit
e1aa514179
1 changed files with 9 additions and 17 deletions
|
@ -31,7 +31,6 @@ const {
|
|||
ObjectGetOwnPropertyDescriptor,
|
||||
ObjectPrototypeIsPrototypeOf,
|
||||
ReflectDefineProperty,
|
||||
ReflectHas,
|
||||
SafeArrayIterator,
|
||||
SafeMap,
|
||||
StringPrototypeStartsWith,
|
||||
|
@ -108,14 +107,6 @@ function setStopImmediatePropagation(
|
|||
event[_stopImmediatePropagationFlag] = value;
|
||||
}
|
||||
|
||||
// Type guards that widen the event type
|
||||
|
||||
function hasRelatedTarget(
|
||||
event,
|
||||
) {
|
||||
return ReflectHas(event, "relatedTarget");
|
||||
}
|
||||
|
||||
const isTrusted = ObjectGetOwnPropertyDescriptor({
|
||||
get isTrusted() {
|
||||
return this[_isTrusted];
|
||||
|
@ -501,9 +492,12 @@ function isShadowRoot(nodeImpl) {
|
|||
}
|
||||
|
||||
function isSlottable(
|
||||
nodeImpl,
|
||||
/* nodeImpl, */
|
||||
) {
|
||||
return Boolean(isNode(nodeImpl) && ReflectHas(nodeImpl, "assignedSlot"));
|
||||
// TODO(marcosc90) currently there aren't any slottables nodes
|
||||
// https://dom.spec.whatwg.org/#concept-slotable
|
||||
// return isNode(nodeImpl) && ReflectHas(nodeImpl, "assignedSlot");
|
||||
return false;
|
||||
}
|
||||
|
||||
// DOM Logic functions
|
||||
|
@ -546,9 +540,7 @@ function dispatch(
|
|||
setDispatched(eventImpl, true);
|
||||
|
||||
targetOverride = targetOverride ?? targetImpl;
|
||||
const eventRelatedTarget = hasRelatedTarget(eventImpl)
|
||||
? eventImpl.relatedTarget
|
||||
: null;
|
||||
const eventRelatedTarget = eventImpl.relatedTarget;
|
||||
let relatedTarget = retarget(eventRelatedTarget, targetImpl);
|
||||
|
||||
if (targetImpl !== relatedTarget || targetImpl === eventRelatedTarget) {
|
||||
|
@ -972,7 +964,7 @@ class EventTarget {
|
|||
|
||||
const { listeners } = self[eventTargetData];
|
||||
|
||||
if (!(ReflectHas(listeners, type))) {
|
||||
if (!listeners[type]) {
|
||||
listeners[type] = [];
|
||||
}
|
||||
|
||||
|
@ -1020,7 +1012,7 @@ class EventTarget {
|
|||
);
|
||||
|
||||
const { listeners } = self[eventTargetData];
|
||||
if (callback !== null && ReflectHas(listeners, type)) {
|
||||
if (callback !== null && listeners[type]) {
|
||||
listeners[type] = ArrayPrototypeFilter(
|
||||
listeners[type],
|
||||
(listener) => listener.callback !== callback,
|
||||
|
@ -1069,7 +1061,7 @@ class EventTarget {
|
|||
}
|
||||
|
||||
const { listeners } = self[eventTargetData];
|
||||
if (!ReflectHas(listeners, event.type)) {
|
||||
if (!listeners[event.type]) {
|
||||
setTarget(event, this);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue