Class: Stupidedi::Builder::IdentifierStack::ISA

Inherits:
Object
  • Object
show all
Defined in:
lib/stupidedi/builder/identifier_stack.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(parent, id) ⇒ ISA

Returns a new instance of ISA.



66
67
68
# File 'lib/stupidedi/builder/identifier_stack.rb', line 66

def initialize(parent, id)
  @count, @parent, @next, @id = 0, parent, id, id
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



64
65
66
# File 'lib/stupidedi/builder/identifier_stack.rb', line 64

def id
  @id
end

Instance Method Details

#countObject

Number of Functional Groups (GS..GE)



75
76
77
# File 'lib/stupidedi/builder/identifier_stack.rb', line 75

def count
  @count
end

#gsObject



70
71
72
# File 'lib/stupidedi/builder/identifier_stack.rb', line 70

def gs
  GS.new(self, @next).tap { @count += 1; @next += 1 }
end

#popObject



79
80
81
# File 'lib/stupidedi/builder/identifier_stack.rb', line 79

def pop
  @parent
end