Class: OrigenTesters::IGXLBasedTester::Decompiler::Atp::GlobalLabel
- Inherits:
-
Decompiler::Nodes::Node
- Object
- Decompiler::Nodes::Node
- OrigenTesters::IGXLBasedTester::Decompiler::Atp::GlobalLabel
- 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
Instance Method Summary collapse
-
#initialize(label_type:, label_name:, context:) ⇒ GlobalLabel
constructor
A new instance of GlobalLabel.
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 |