Class: Decode::Comment::Parameter

Inherits:
Tag
  • Object
show all
Defined in:
lib/decode/comment/parameter.rb

Overview

Describes a named method parameter.

  • ‘@parameter age [Float] The users age.`

Constant Summary collapse

PATTERN =
/\A(?<name>.*?)\s+\[(?<type>.*?)\](\s+(?<details>.*?))?\Z/

Instance Attribute Summary collapse

Attributes inherited from Tag

#directive

Attributes inherited from Node

#children

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Tag

match, parse

Methods inherited from Node

#add, #children?, #each, #filter, #text, #traverse

Constructor Details

#initialize(directive, name, type) ⇒ Parameter

Returns a new instance of Parameter.



27
28
29
30
31
32
# File 'lib/decode/comment/parameter.rb', line 27

def initialize(directive, name, type)
	super(directive)
	
	@name = name
	@type = type
end

Instance Attribute Details

#nameObject (readonly)

The name of the parameter.



36
37
38
# File 'lib/decode/comment/parameter.rb', line 36

def name
  @name
end

#typeObject (readonly)

The type of the attribute.



40
41
42
# File 'lib/decode/comment/parameter.rb', line 40

def type
  @type
end

Class Method Details

.build(directive, match) ⇒ Object



17
18
19
20
21
22
23
24
25
# File 'lib/decode/comment/parameter.rb', line 17

def self.build(directive, match)
	node = self.new(directive, match[:name], match[:type])
	
	if details = match[:details]
		node.add(Text.new(details))
	end
	
	return node
end