lib/yoda/typing/traces/send.rb in yoda-language-server-0.7.2 vs lib/yoda/typing/traces/send.rb in yoda-language-server-0.8.0
- old
+ new
@@ -1,21 +1,21 @@
module Yoda
module Typing
module Traces
# Store evaluation result for each ast node.
class Send < Base
- # @return [Context]
+ # @return [Contexts::BaseContext]
attr_reader :context
# @return [Array<Model::FunctionSignatures::Base>]
attr_reader :functions
- # @return [Model::Types::Base]
+ # @return [Model::TypeExpressions::Base]
attr_reader :type
- # @param context [Context]
+ # @param context [Contexts::BaseContext]
# @param functions [Array<Model::FunctionSignatures::Base>]
- # @param type [Array<Model::Types::Base>]
+ # @param type [Array<Model::TypeExpressions::Base>]
def initialize(context, functions, type)
@context = context
@functions = functions
@type = type
end