Class: OrigenTesters::IGXLBasedTester::Decompiler::Atp::Label

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

#context, #type

Instance Method Summary collapse

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