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.
183 184 185 186 187 |
# File 'lib/review/preprocessor.rb', line 183 def initialize(op, args, opts) @op = op @args = args @opts = opts end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
190 191 192 |
# File 'lib/review/preprocessor.rb', line 190 def args @args end |
#op ⇒ Object (readonly)
Returns the value of attribute op.
189 190 191 |
# File 'lib/review/preprocessor.rb', line 189 def op @op end |
#opts ⇒ Object (readonly)
Returns the value of attribute opts.
191 192 193 |
# File 'lib/review/preprocessor.rb', line 191 def opts @opts end |
Instance Method Details
#[](key) ⇒ Object
201 202 203 |
# File 'lib/review/preprocessor.rb', line 201 def [](key) @opts[key] end |
#arg ⇒ Object
193 194 195 |
# File 'lib/review/preprocessor.rb', line 193 def arg @args.first end |
#opt ⇒ Object
197 198 199 |
# File 'lib/review/preprocessor.rb', line 197 def opt @opts.first end |