class Decode::Scope

An abstract namespace for nesting definitions.

Public Instance Methods

container?() click to toggle source

Scopes are always containers. @returns [Boolean] Always `true`.

# File lib/decode/scope.rb, line 33
def container?
        true
end
short_form() click to toggle source

@returns [String] The name of the scope.

# File lib/decode/scope.rb, line 27
def short_form
        @name
end