Class: Yoda::Typing::Tree::Ensure

Inherits:
Base
  • Object
show all
Defined in:
lib/yoda/typing/tree/ensure.rb

Instance Attribute Summary

Attributes inherited from Base

#context, #tracer

Instance Method Summary collapse

Methods inherited from Base

#build_child, #generator, #infer_child, #initialize, #inspect, #pretty_print, #type

Constructor Details

This class inherits a constructor from Yoda::Typing::Tree::Base

Instance Method Details

#infer_typeTypes::Type

Returns:



9
10
11
12
13
# File 'lib/yoda/typing/tree/ensure.rb', line 9

def infer_type
  type = infer_child(node.body)
  infer_child(node.ensure_body)
  type
end

#nodeAST::EnsureNode

Returns:



# File 'lib/yoda/typing/tree/ensure.rb', line 5