-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
replaces calls to global functions with calls to local functions and generates a single line of local variable assignments at the top
so something like :
local function doSomething(s)
s = string.rep(s, 100)
print(s)
endturns into
local string_rep, pring = string.rep, print
local function doSomething(s)
s = string_rep(s, 100)
print(s)
endMetadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request