Packageorg.spicefactory.parsley.core.scope
Classpublic class ScopeName
InheritanceScopeName Inheritance Object

Enumeration for the two builtin scope types.



Public Constants
 ConstantDefined By
  GLOBAL : String = global
[static] Constant for the name of the global scope.
ScopeName
  LOCAL : String = local
[static] Constant for the name of the local scope.
ScopeName
Constant Detail
GLOBALConstant
public static const GLOBAL:String = global

Constant for the name of the global scope.

A global scope spans the entire Context hierarchy and is inherited by each child Context added to the hierarchy. It is not necessarily global application-wide, since you can build disconnected Context hierachies, although this is a rather rare use case.

LOCALConstant 
public static const LOCAL:String = local

Constant for the name of the local scope.

A local scope only spans a single Context. Such a scope is automatically created for each Context created in an application.