[ConfigImpact] Revise qualifier

Summary:
* "without GK/QE" as bold
* procedure name as code

Reviewed By: ezgicicek

Differential Revision: D28350432

fbshipit-source-id: 33adccefc
master
Sungkeun Cho 4 years ago committed by Facebook GitHub Bot
parent aa3a2ce049
commit 2bfda57cb1

@ -93,7 +93,7 @@ module UncheckedCallee = struct
let pp_without_location_list f unchecked_callees = let pp_without_location_list f unchecked_callees =
IList.pp_print_list ~max:Config.config_impact_max_callees_to_print IList.pp_print_list ~max:Config.config_impact_max_callees_to_print
~pp_sep:(fun f () -> Format.pp_print_string f ", ") ~pp_sep:(fun f () -> Format.pp_print_string f ", ")
(fun f {callee} -> Procname.pp f callee) (fun f {callee} -> Format.fprintf f "`%a`" Procname.pp callee)
f unchecked_callees f unchecked_callees

@ -427,7 +427,7 @@ module ConfigImpactItem = struct
(UncheckedCallee.is_known_expensive x) ) (UncheckedCallee.is_known_expensive x) )
in in
let qualifier = let qualifier =
Format.asprintf "Function call%s to %a %s %a without GK/QE." Format.asprintf "Function call%s to %a %s %a **without GK/QE**."
(if is_singleton then "" else "s") (if is_singleton then "" else "s")
UncheckedCallee.pp_without_location_list unchecked_callees UncheckedCallee.pp_without_location_list unchecked_callees
(if is_singleton then "is" else "are") (if is_singleton then "is" else "are")

Loading…
Cancel
Save