mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
Check CustomEvent
constructor params (#2011)
This commit is contained in:
parent
8ac36d8db4
commit
1fec34b463
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
||||||
import * as domTypes from "./dom_types";
|
import * as domTypes from "./dom_types";
|
||||||
import * as event from "./event";
|
import * as event from "./event";
|
||||||
import { getPrivateValue } from "./util";
|
import { getPrivateValue, requiredArguments } from "./util";
|
||||||
|
|
||||||
// WeakMaps are recommended for private attributes (see MDN link below)
|
// WeakMaps are recommended for private attributes (see MDN link below)
|
||||||
// https://developer.mozilla.org/en-US/docs/Archive/Add-ons/Add-on_SDK/Guides/Contributor_s_Guide/Private_Properties#Using_WeakMaps
|
// https://developer.mozilla.org/en-US/docs/Archive/Add-ons/Add-on_SDK/Guides/Contributor_s_Guide/Private_Properties#Using_WeakMaps
|
||||||
|
@ -28,6 +28,7 @@ export class CustomEvent extends event.Event implements domTypes.CustomEvent {
|
||||||
type: string,
|
type: string,
|
||||||
customEventInitDict: domTypes.CustomEventInit = {}
|
customEventInitDict: domTypes.CustomEventInit = {}
|
||||||
) {
|
) {
|
||||||
|
requiredArguments("CustomEvent", arguments.length, 1);
|
||||||
super(type, customEventInitDict);
|
super(type, customEventInitDict);
|
||||||
const { detail = null } = customEventInitDict;
|
const { detail = null } = customEventInitDict;
|
||||||
customEventAttributes.set(this, { detail });
|
customEventAttributes.set(this, { detail });
|
||||||
|
|
Loading…
Reference in a new issue