add another super test

This commit is contained in:
leaf corcoran 2015-09-30 00:57:08 -07:00
parent c24acf490b
commit b9efd31af7
2 changed files with 8 additions and 0 deletions

View File

@ -77,6 +77,7 @@ class CoolSuper
super\yeah"world".okay hi, hi, hi
something.super
super.super.super.super
super\hello
nil

View File

@ -319,6 +319,13 @@ do
_parent_0.yeah(self, "world").okay(hi, hi, hi)
_ = something.super
_ = _parent_0.super.super.super
do
local _base_1 = _parent_0
local _fn_0 = _base_1.hello
_ = function(...)
return _fn_0(self, ...)
end
end
return nil
end
}