Class: YARD::CodeObjects::CodeObjectList
- Inherits:
-
Array
- Object
- Array
- YARD::CodeObjects::CodeObjectList
- Defined in:
- lib/yard/code_objects/base.rb
Overview
A list of code objects. This array acts like a set (no unique items) but also disallows any Proxy objects from being added.
Instance Method Summary (collapse)
-
- (CodeObjectList) initialize(owner = Registry.root)
constructor
Creates a new object list associated with a namespace.
-
- (CodeObjectList) push(value)
(also: #<<)
Adds a new value to the list.
Methods inherited from Array
Constructor Details
- (CodeObjectList) initialize(owner = Registry.root)
Creates a new object list associated with a namespace
10 11 12 |
# File 'lib/yard/code_objects/base.rb', line 10 def initialize(owner = Registry.root) @owner = owner end |
Instance Method Details
- (CodeObjectList) push(value) Also known as: <<
Adds a new value to the list
18 19 20 21 22 23 24 25 26 |
# File 'lib/yard/code_objects/base.rb', line 18 def push(value) value = Proxy.new(@owner, value) if value.is_a?(String) || value.is_a?(Symbol) if value.is_a?(CodeObjects::Base) || value.is_a?(Proxy) super(value) unless include?(value) else raise ArgumentError, "#{value.class} is not a valid CodeObject" end self end |