Class: ReVIEW::Preprocessor::Directive
- Defined in:
- lib/review/preprocessor.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#op ⇒ Object
readonly
Returns the value of attribute op.
-
#opts ⇒ Object
readonly
Returns the value of attribute opts.
Instance Method Summary collapse
- #[](key) ⇒ Object
- #arg ⇒ Object
-
#initialize(op, args, opts) ⇒ Directive
constructor
A new instance of Directive.
- #opt ⇒ Object
Constructor Details
#initialize(op, args, opts) ⇒ Directive
Returns a new instance of Directive.
190 191 192 193 194 |
# File 'lib/review/preprocessor.rb', line 190 def initialize(op, args, opts) @op = op @args = args @opts = opts end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
197 198 199 |
# File 'lib/review/preprocessor.rb', line 197 def args @args end |
#op ⇒ Object (readonly)
Returns the value of attribute op.
196 197 198 |
# File 'lib/review/preprocessor.rb', line 196 def op @op end |
#opts ⇒ Object (readonly)
Returns the value of attribute opts.
198 199 200 |
# File 'lib/review/preprocessor.rb', line 198 def opts @opts end |
Instance Method Details
#[](key) ⇒ Object
208 209 210 |
# File 'lib/review/preprocessor.rb', line 208 def [](key) @opts[key] end |
#arg ⇒ Object
200 201 202 |
# File 'lib/review/preprocessor.rb', line 200 def arg @args.first end |
#opt ⇒ Object
204 205 206 |
# File 'lib/review/preprocessor.rb', line 204 def opt @opts.first end |