ppx_compare SiofTrace

Reviewed By: cristianoc

Differential Revision: D4232411

fbshipit-source-id: 52d40da
master
Josh Berdine 8 years ago committed by Facebook Github Bot
parent e397afa085
commit 71664c7828

@ -24,7 +24,7 @@ module TraceElem = struct
type t = {
site : CallSite.t;
kind: [`Call | `Access] * Kind.t;
}
} [@@deriving compare]
let call_site { site; } = site
@ -34,14 +34,6 @@ module TraceElem = struct
let with_callsite { kind=(_, kind); } site = { kind=(`Call, kind); site; }
let compare t1 t2 =
let n = CallSite.compare t1.site t2.site in
if n <> 0 then n
else
let n = tags_compare (fst t1.kind) (fst t2.kind) in
if n <> 0 then n
else Kind.compare (snd t1.kind) (snd t2.kind)
let pp fmt { site; kind; } =
F.fprintf fmt "Access to %a at %a" Kind.pp (snd kind) CallSite.pp site

Loading…
Cancel
Save