File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 120120 end ,
121121 render = function (self , ...)
122122 self :lint_check_unused ()
123- return _parent_0 .render (self , ... )
123+ return self . __class . __parent .render (self , ... )
124124 end ,
125125 block = function (self , ...)
126126 do
127- local _with_0 = _parent_0 .block (self , ... )
127+ local _with_0 = self . __class . __parent .block (self , ... )
128128 _with_0 .block = self .block
129129 _with_0 .render = self .render
130130 _with_0 .get_root_block = self .get_root_block
143143 if whitelist_globals == nil then
144144 whitelist_globals = default_whitelist
145145 end
146- _parent_0 .__init (self , ... )
146+ self . __class . __parent .__init (self , ... )
147147 self .get_root_block = function ()
148148 return self
149149 end
206206 __index = function (cls , name )
207207 local val = rawget (_base_0 , name )
208208 if val == nil then
209- return _parent_0 [name ]
209+ local parent = rawget (cls , " __parent" )
210+ if parent then
211+ return parent [name ]
212+ end
210213 else
211214 return val
212215 end
You can’t perform that action at this time.
0 commit comments