Class: OrigenTesters::IGXLBasedTester::Decompiler::Atp::Label
- Inherits:
-
Decompiler::Nodes::Node
- Object
- Decompiler::Nodes::Node
- OrigenTesters::IGXLBasedTester::Decompiler::Atp::Label
- Defined in:
- lib/origen_testers/igxl_based_tester/decompiler/nodes.rb
Constant Summary collapse
- PLATFORM_NODES =
[:label_name]
Instance Attribute Summary
Attributes inherited from Decompiler::Nodes::Node
Instance Method Summary collapse
-
#initialize(label_name:, context:) ⇒ Label
constructor
A new instance of Label.
Methods inherited from Decompiler::Nodes::Node
#execute?, inherited, #platform_nodes
Constructor Details
#initialize(label_name:, context:) ⇒ Label
Returns a new instance of Label.
55 56 57 58 59 60 |
# File 'lib/origen_testers/igxl_based_tester/decompiler/nodes.rb', line 55 def initialize(label_name:, context:) @execute = false @label_name = label_name super(context: context, type: :label) end |