class Scope < Definition

Inherits from
Definition: #inspect, #name, #full_path, #public?, #coverage_relevant?, #documented?, #qualified_name, #nested_name, #start_with?, #convert, #long_form, #qualified_form, #multiline?, #text, #alias?, #nested?, #documentation, #location

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