class Scope
An abstract namespace for nesting definitions.
Definitions
def short_form
Signature
-
returns
String
The name of the scope.
Implementation
def short_form
name.to_s
end
def container?
Scopes are always containers.
Signature
-
returns
bool
Always
true
.
Implementation
def container?
true
end