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
but the variable ns is null. I don't know why, but both Firefox and Chromium interpret ns is of type object, so the first part of the function __eq__ is satisfied, but the second part fails. I've modified __eq__ to read the following, to get more information about a before the error occurs:
To resolves the issue, the function like __eq__ must look like the following, but this change to the condition may also be added to the following functions like __neq__ etc.
Hi!
Given the following piece of code
I'm getting this error in JavaScript with the latest Transcrypt 3.7.11, but also before:
The reason for this is, that the
if ns == "SVG":
is causing the codebut the variable
ns
is null. I don't know why, but both Firefox and Chromium interpretns
is of type object, so the first part of the function__eq__
is satisfied, but the second part fails. I've modified__eq__
to read the following, to get more information abouta
before the error occurs:Output is:
so
a
is null but also an object?To resolves the issue, the function like
__eq__
must look like the following, but this change to the condition may also be added to the following functions like__neq__
etc.The text was updated successfully, but these errors were encountered: