4594
4595
4596
4597
4598
4599
4600
4601
|
# File 'lib/tecsgen/core/componentobj.rb', line 4594
def self.pop
dbgPrint "pop Namespace\n"
@@namespace_stack, @@namespace_sp = @@nest_stack[@@nest_stack_index]
@@nest_stack_index -= 1
if @@nest_stack_index < -1
raise "TooManyRestore"
end
end
|