-
Notifications
You must be signed in to change notification settings - Fork 196
Closed

Description
Apologies in advance for the amazingly clever title.
Encountered this issue when working with love configs. This snippet:
with t
with .window
.width = 1920
.height = 1080
.fullscreen = true
.fullscreentype = 'desktop'
Compiles to:
do
local _with_0 = t
do
local _with_1 = _with_1.window -- whoops! this should be _with_0.window
_with_1.width = 1920
_with_1.height = 1080
_with_1.fullscreen = true
_with_1.fullscreentype = 'desktop'
end
return _with_0
end
Metadata
Metadata
Assignees
Labels
No labels