Class: OrigenTesters::IGXLBasedTester::Decompiler::Atp::StartLabel

Inherits:
Decompiler::Nodes::Node show all
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

#context, #type

Instance Method Summary collapse

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