Class: Speculations::Parser::Context::Include

Inherits:
Object
  • Object
show all
Defined in:
lib/speculations/parser/context/include.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#lnbObject (readonly)

Returns the value of attribute lnb.



3
4
5
# File 'lib/speculations/parser/context/include.rb', line 3

def lnb
  @lnb
end

#parentObject (readonly)

Returns the value of attribute parent.



3
4
5
# File 'lib/speculations/parser/context/include.rb', line 3

def parent
  @parent
end

Instance Method Details

#add_line(line) ⇒ Object



5
6
7
8
# File 'lib/speculations/parser/context/include.rb', line 5

def add_line line
  lines << line
  self
end

#linesObject



10
11
12
# File 'lib/speculations/parser/context/include.rb', line 10

def lines
   @__lines__ ||= []
end

#to_codeObject



14
15
16
# File 'lib/speculations/parser/context/include.rb', line 14

def to_code
  parent.map_lines("# #{parent.filename}:#{lnb}", lines)
end