Class: PackClassVars
- Inherits:
-
Object
- Object
- PackClassVars
- Defined in:
- lib/tdl/exlib/element_class_vars.rb
Instance Attribute Summary collapse
-
#after_dynamict_inst ⇒ Object
Returns the value of attribute after_dynamict_inst.
-
#before_dynamict_inst ⇒ Object
Returns the value of attribute before_dynamict_inst.
-
#module_stack ⇒ Object
Returns the value of attribute module_stack.
-
#special_stack ⇒ Object
Returns the value of attribute special_stack.
-
#tdl_msgs_stack ⇒ Object
Returns the value of attribute tdl_msgs_stack.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ PackClassVars
constructor
A new instance of PackClassVars.
Constructor Details
#initialize ⇒ PackClassVars
Returns a new instance of PackClassVars.
89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/tdl/exlib/element_class_vars.rb', line 89 def initialize @@nams_list.each do |n| self.method("#{n}=").call(ElementClassVars.new(n)) end @module_stack ||= [] @before_dynamict_inst ||= [] @after_dynamict_inst ||= [] @special_stack ||= Hash.new @tdl_msgs_stack ||=[] end |
Instance Attribute Details
#after_dynamict_inst ⇒ Object
Returns the value of attribute after_dynamict_inst.
81 82 83 |
# File 'lib/tdl/exlib/element_class_vars.rb', line 81 def after_dynamict_inst @after_dynamict_inst end |
#before_dynamict_inst ⇒ Object
Returns the value of attribute before_dynamict_inst.
81 82 83 |
# File 'lib/tdl/exlib/element_class_vars.rb', line 81 def before_dynamict_inst @before_dynamict_inst end |
#module_stack ⇒ Object
Returns the value of attribute module_stack.
81 82 83 |
# File 'lib/tdl/exlib/element_class_vars.rb', line 81 def module_stack @module_stack end |
#special_stack ⇒ Object
Returns the value of attribute special_stack.
81 82 83 |
# File 'lib/tdl/exlib/element_class_vars.rb', line 81 def special_stack @special_stack end |
#tdl_msgs_stack ⇒ Object
Returns the value of attribute tdl_msgs_stack.
81 82 83 |
# File 'lib/tdl/exlib/element_class_vars.rb', line 81 def tdl_msgs_stack @tdl_msgs_stack end |