Class: ReVIEW::Preprocessor::Directive

Inherits:
Object
  • Object
show all
Defined in:
lib/review/preprocessor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(op, args, opts) ⇒ Directive

Returns a new instance of Directive.



191
192
193
194
195
# File 'lib/review/preprocessor.rb', line 191

def initialize(op, args, opts)
  @op = op
  @args = args
  @opts = opts
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



198
199
200
# File 'lib/review/preprocessor.rb', line 198

def args
  @args
end

#opObject (readonly)

Returns the value of attribute op.



197
198
199
# File 'lib/review/preprocessor.rb', line 197

def op
  @op
end

#optsObject (readonly)

Returns the value of attribute opts.



199
200
201
# File 'lib/review/preprocessor.rb', line 199

def opts
  @opts
end

Instance Method Details

#[](key) ⇒ Object



209
210
211
# File 'lib/review/preprocessor.rb', line 209

def [](key)
  @opts[key]
end

#argObject



201
202
203
# File 'lib/review/preprocessor.rb', line 201

def arg
  @args.first
end

#optObject



205
206
207
# File 'lib/review/preprocessor.rb', line 205

def opt
  @opts.first
end