Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
WoW
Talk
English
Views
Read
Edit
History
More
Search
Navigation
Home
Random page
Help using wiki
Editions
for WoW
for WildStar
for Solar2D
Documentation
for WoW
for WildStar
Reference
WoW
⦁ FrameXML
⦁ AddOns
⦁ API
⦁ WoW Lua
WildStar
⦁ AddOns
⦁ API
⦁ WildStar Lua
Engine
Tools
What links here
Related changes
Special pages
Page information
Site
Recent Changes
Editing
WoW:API loadstring
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Protecting the global environment === Lua can manipulate the environment that a function gets to see with [[API setfenv|setfenv]](). It is however important to remember that already-existing functions that the code is allowed to call retain their original environments, so e.g. giving protected code access to the standard [[API setglobal|setglobal]]() is probably not a good idea. local func = assert(loadstring([[ print( format("format is %s", tostring(format)) ); print("setglobal is "..tostring(getglobal("setglobal"))); ]])); local smallenv = {format=format, tostring=tostring, getglobal=getglobal}; smallenv.print = function(msg) DEFAULT_CHAT_FRAME:AddMessage(msg); end setfenv(func, smallenv); func(); Note how we're using the <nowiki>"[[", "]]"</nowiki> quoting style here. Such strings can span multiple lines. The above could of course also be written in a single line with regular quotes; it's just an example. The above code cannot manipulate anything in the global environment. All it has access to is what we give it. It will output something like this in the default chat frame: format is function:00127436 setglobal is nil If the protected code modifies its environment, e.g. to return values out, we can examine the changes via looking at "smallenv". E.g. if the protected code does <code>greeting = "So long and thanks for the fish";</code>, we get hold of it via accessing <code>smallenv.greeting</code>.
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)