class TypeProf::Core::AST::CallBaseNode::YieldNode

Public Class Methods

new(raw_node, lenv) click to toggle source
Calls superclass method TypeProf::Core::AST::CallBaseNode::new
# File typeprof-0.30.1/lib/typeprof/core/ast/call.rb, line 200
def initialize(raw_node, lenv)
  raw_args = raw_node.arguments
  super(raw_node, nil, :call, nil, raw_args, nil, nil, lenv)
end