Method: Ikra::Symbolic::ArrayCommand#result_type

Defined in:
lib/types/types/array_command_type.rb

#result_typeObject



113
114
115
116
117
118
119
120
# File 'lib/types/types/array_command_type.rb', line 113

def result_type
    # Result cache should be cached, just like the result itself
    if @result_type == nil
        @result_type = TypeInference::CommandInference.process_command(self)
    end

    return @result_type
end