class NamingStack extends AnyRef
Class for the (global) naming stack object, which provides a way to push and pop naming contexts as functions are called / finished.
- Alphabetic
- By Inheritance
- NamingStack
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new NamingStack()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def length(): Int
- val namingStack: Stack[NamingContext]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
popContext[T](prefixRef: T, until: NamingContext): Unit
Called at the end of a function, popping the current naming context, adding it to the enclosing context's descendants, and passing through the prefix naming reference.
Called at the end of a function, popping the current naming context, adding it to the enclosing context's descendants, and passing through the prefix naming reference. Every instance of push_context() must have a matching pop_context().
Will assert out if the context being popped isn't the topmost on the stack.
-
def
pushContext(): NamingContext
Creates a new naming context, where all items in the context will have their names prefixed with some yet-to-be-determined prefix from object names in an enclosing scope.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )