-
-
Notifications
You must be signed in to change notification settings - Fork 184
Closed
Labels
Description
key input:
class Child extends Parent {
M2() {
super.M2?.()
}
}incorrect output (this become Parent.prototype, it should be self)
function Child.prototype.M2(self)
local ____this_1
____this_1 = Parent.prototype
local ____opt_0 = ____this_1.M2
if ____opt_0 ~= nil then
____opt_0(____this_1)
end
endexpected output
function Child.prototype.M2(self)
local ____opt_0 = Parent.prototype.M2
if ____opt_0 ~= nil then
____opt_0(self)
end
endReactions are currently unavailable