Class: Choosy::ParseResult
- Inherits:
-
BaseParseResult
- Object
- BaseParseResult
- Choosy::ParseResult
- Defined in:
- lib/choosy/parse_result.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
Attributes inherited from BaseParseResult
Instance Method Summary collapse
-
#initialize(command, subresult) ⇒ ParseResult
constructor
A new instance of ParseResult.
Methods inherited from BaseParseResult
Constructor Details
#initialize(command, subresult) ⇒ ParseResult
Returns a new instance of ParseResult.
28 29 30 31 |
# File 'lib/choosy/parse_result.rb', line 28 def initialize(command, subresult) super(command, subresult) @args = [] end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
26 27 28 |
# File 'lib/choosy/parse_result.rb', line 26 def args @args end |