class Ikra::TypeInference::ClearTypesVisitor

Public Instance Methods

visit_node(node) click to toggle source
# File lib/types/inference/clear_types_visitor.rb, line 4
def visit_node(node)
    if node.respond_to?(:get_type)
        node.get_type.clear!
    end
end