From 1fec34b4632521068c31815c1d9f92286b6d0297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BF=B7=E6=B8=A1?= Date: Thu, 28 Mar 2019 20:08:32 +0800 Subject: [PATCH] Check `CustomEvent` constructor params (#2011) --- js/custom_event.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/custom_event.ts b/js/custom_event.ts index d2092a2be5..713794e28b 100644 --- a/js/custom_event.ts +++ b/js/custom_event.ts @@ -1,7 +1,7 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. import * as domTypes from "./dom_types"; import * as event from "./event"; -import { getPrivateValue } from "./util"; +import { getPrivateValue, requiredArguments } from "./util"; // 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 @@ -28,6 +28,7 @@ export class CustomEvent extends event.Event implements domTypes.CustomEvent { type: string, customEventInitDict: domTypes.CustomEventInit = {} ) { + requiredArguments("CustomEvent", arguments.length, 1); super(type, customEventInitDict); const { detail = null } = customEventInitDict; customEventAttributes.set(this, { detail });