Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP to improve currentTarget #202

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions TS.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ module Emit =
| "DOMString" -> "string"
| "DOMTimeStamp" -> "number"
| "EndOfStreamError" -> "number"
| "EventListener" -> "EventListenerOrEventListenerObject"
| "EventListener" -> "EventListenerOrEventListenerObject<T extends EventTarget>"
| "double" | "float" -> "number"
| "Function" -> "Function"
| "long" | "long long" | "signed long" | "signed long long" | "unsigned long" | "unsigned long long" -> "number"
Expand Down Expand Up @@ -854,8 +854,8 @@ module Emit =
String.Join(", ", (List.map paramToString ps))

let EmitCallBackInterface (i:Browser.Interface) =
Pt.Printl "interface %s {" i.Name
Pt.PrintWithAddedIndent "(evt: Event): void;"
Pt.Printl "interface %s<T extends EventTarget> {" i.Name
Pt.PrintWithAddedIndent "(evt: Event<T>): void;"
Pt.Printl "}"
Pt.Printl ""

Expand Down Expand Up @@ -1071,8 +1071,8 @@ module Emit =

if shouldEmitStringEventHandler then
Pt.Printl
"%saddEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;"
fPrefix
"%saddEventListener(type: string, listener: EventListenerOrEventListenerObject<%s>, useCapture?: boolean): void;"
fPrefix i.Name

let EmitConstructorSignature (i:Browser.Interface) =
let emitConstructorSigFromJson (c: InputJsonType.Root) =
Expand Down Expand Up @@ -1466,7 +1466,7 @@ module Emit =
// Add missed interface definition from the spec
InputJson.getAddedItems InputJson.Interface flavor |> Array.iter EmitAddedInterface

Pt.Printl "declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;"
Pt.Printl "declare type EventListenerOrEventListenerObject<T extends EventTarget> = EventListener<T extends EventTarget> | EventListenerObject<T extends EventTarget>;"
Pt.Printl ""

EmitCallBackFunctions flavor
Expand Down