Sha256: fd9ce5a32407ddf33469d6886b7978f82ef23fd0832c574433d8de1c8ec19142
Contents?: true
Size: 417 Bytes
Versions: 38
Compression:
Stored size: 417 Bytes
Contents
# frozen_string_literal: true require 'appmap/handler/function_handler' module AppMap module Handler class MarshalLoadHandler < FunctionHandler PARAMETERS= [ [ :req, :source ], [ :rest ], ] def handle_call(receiver, args) AppMap::Event::MethodCall.build_from_invocation(defined_class, hook_method, receiver, args, parameters: PARAMETERS) end end end end
Version data entries
38 entries across 38 versions & 1 rubygems