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.



62
63
64
# File 'lib/stupidedi/builder/identifier_stack.rb', line 62

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

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



60
61
62
# File 'lib/stupidedi/builder/identifier_stack.rb', line 60

def id
  @id
end

Instance Method Details

#countObject

Number of Functional Groups (GS..GE)



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

def count
  @count
end

#gsObject



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

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

#popObject



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

def pop
  @parent
end