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.



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

#argsObject (readonly)

Returns the value of attribute args.



190
191
192
# File 'lib/review/preprocessor.rb', line 190

def args
  @args
end

#opObject (readonly)

Returns the value of attribute op.



189
190
191
# File 'lib/review/preprocessor.rb', line 189

def op
  @op
end

#optsObject (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

#argObject



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

def arg
  @args.first
end

#optObject



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

def opt
  @opts.first
end