class AdLint::Cc1::SubInterpreter

Attributes

target_node_class[R]

Public Class Methods

new(owner, target_node_class) click to toggle source
# File lib/adlint/cc1/interp.rb, line 541
def initialize(owner, target_node_class)
  @owner = owner
  @target_node_class = target_node_class
end

Private Instance Methods

interpreter() click to toggle source
# File lib/adlint/cc1/interp.rb, line 549
def interpreter
  # NOTE: This is private attr_reader for InterpreterMediator.
  #       This attribute is read via a normal method to suppress
  #       `private attribute?' warning.
  @owner
end