Class: OrigenTesters::IGXLBasedTester::Decompiler::Atp::GlobalLabel

Inherits:
Decompiler::Nodes::Node show all
Defined in:
lib/origen_testers/igxl_based_tester/decompiler/nodes.rb

Constant Summary collapse

PLATFORM_NODES =
[:label_type, :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_type:, label_name:, context:) ⇒ GlobalLabel

Returns a new instance of GlobalLabel.



66
67
68
69
70
71
72
# File 'lib/origen_testers/igxl_based_tester/decompiler/nodes.rb', line 66

def initialize(label_type:, label_name:, context:)
  @execute = false
  @label_type = label_type
  @label_name = label_name

  super(context: context, type: :global_label)
end