Class: ReVIEW::BracketArgNode

Inherits:
Node show all
Defined in:
lib/review/node.rb,
lib/review/compiler.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#inspect, #to_doc, #to_json, #to_raw, #to_s_by

Constructor Details

#initialize(compiler, position, content) ⇒ BracketArgNode

Returns a new instance of BracketArgNode.



903
904
905
906
907
# File 'lib/review/compiler.rb', line 903

def initialize(compiler, position, content)
  @compiler = compiler
  @position = position
  @content = content
end

Instance Attribute Details

#compilerObject (readonly)

Returns the value of attribute compiler.



908
909
910
# File 'lib/review/compiler.rb', line 908

def compiler
  @compiler
end

#contentObject (readonly)

Returns the value of attribute content.



910
911
912
# File 'lib/review/compiler.rb', line 910

def content
  @content
end

#positionObject (readonly)

Returns the value of attribute position.



909
910
911
# File 'lib/review/compiler.rb', line 909

def position
  @position
end