Class: OrigenTesters::IGXLBasedTester::Decompiler::Atp::StartLabel
- Inherits:
-
Decompiler::Nodes::Node
- Object
- Decompiler::Nodes::Node
- OrigenTesters::IGXLBasedTester::Decompiler::Atp::StartLabel
- Defined in:
- lib/origen_testers/igxl_based_tester/decompiler/nodes.rb
Constant Summary collapse
- PLATFORM_NODES =
[:start_label]
Instance Attribute Summary
Attributes inherited from Decompiler::Nodes::Node
Instance Method Summary collapse
-
#initialize(start_label:, context:) ⇒ StartLabel
constructor
A new instance of StartLabel.
Methods inherited from Decompiler::Nodes::Node
#execute?, inherited, #platform_nodes
Constructor Details
#initialize(start_label:, context:) ⇒ StartLabel
Returns a new instance of StartLabel.
30 31 32 33 34 35 |
# File 'lib/origen_testers/igxl_based_tester/decompiler/nodes.rb', line 30 def initialize(start_label:, context:) @execute = false @start_label = start_label super(context: context, type: :start_label) end |