Difference between revisions of "NameSpace push"

From Wiki
Jump to: navigation, search
(Applying templates (header, body, footer))
m (spelling)
Line 1: Line 1:
 
{{command header|Namespace Commands}}
 
{{command header|Namespace Commands}}
  
{{body|nameSpace push|''(Added in 1.40)'' The '''[[Documentation#Namespace|Namespace]]''' push commands store the current [[Documentation#Namespace|Namespace]] name and scope in an internal stack.
+
{{body|nameSpace push|''(Added in 1.40)'' The '''[[Documentation#Namespace|Namespace]]''' push command stores the current [[Documentation#Namespace|Namespace]] name and scope in an internal stack.
  
 
The default [[Documentation#Namespace|Namespace]] is [[Documentation#Namespace local|local]] and named STD. This setting is restored when the script is stopped.}}
 
The default [[Documentation#Namespace|Namespace]] is [[Documentation#Namespace local|local]] and named STD. This setting is restored when the script is stopped.}}

Revision as of 01:24, 29 November 2005


Synopsis

nameSpace push

Description

(Added in 1.40) The Namespace push command stores the current Namespace name and scope in an internal stack.

The default Namespace is local and named STD. This setting is restored when the script is stopped.


Note: Currently only Local scope is available. Global scope is to be introduced in a future version of EasyUO.


Example

set !return ; make sure !return is empty
gosub test
display ok !return
halt

sub test
	nameSpace Push ; saves current namespace
	nameSpace Local Test ; create a new temporary namespace to work with
	set !return this_is_a_test
	nameSpace Pop ; restore previous namespace
	nameSpace Copy ret* From Local Test ; copy variables to the original namespace
	nameSpace Push ; saves current namespace
	nameSpace Local Test
	nameSpace Clear ; free memory used by temporary namespace
	nameSpace Pop ; restore previous namespace
return


See also

Main Page Documentation