You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 23, 2024. It is now read-only.
I noticed that in some cases, the typescript transpiler is changing this: (function (event) { to this: (function (Event_1) {
which also makes this line go from this: this._eventList[EventName] = new Event(new event.Delegate());
to this:this._eventList[EventName] = new Event(new Event_1.Delegate());
and finally this: if (args === void 0) { args = event.EventArgs.Empty; }
to this: if (args === void 0) { args = Event_1.EventArgs.Empty; }
Not sure where this Event_1 business is coming from, but should look into it. I nominate @jknewson.
The text was updated successfully, but these errors were encountered:
@marsmith I got it from a pull after you had committed, so yes, it seems that it does. But maybe test to confirm. May work on building the TS transpilation into a gulp task soon so its at least consistent.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I noticed that in some cases, the typescript transpiler is changing this:
(function (event) {
to this:(function (Event_1) {
which also makes this line go from this:
this._eventList[EventName] = new Event(new event.Delegate());
to this:
this._eventList[EventName] = new Event(new Event_1.Delegate());
and finally this:
if (args === void 0) { args = event.EventArgs.Empty; }
to this:
if (args === void 0) { args = Event_1.EventArgs.Empty; }
Not sure where this
Event_1
business is coming from, but should look into it. I nominate @jknewson.The text was updated successfully, but these errors were encountered: