Skip to content
Snippets Groups Projects
Commit a2732f91 authored by Loïc Correnson's avatar Loïc Correnson Committed by Virgile Prevosto
Browse files

[modules] extended logic name printing

parent c0550a10
No related branches found
No related tags found
No related merge requests found
......@@ -2727,9 +2727,8 @@ class cil_printer () = object (self)
method logic_name fmt a =
try
let prefix = Stack.top module_stack in
match Extlib.string_del_prefix prefix a with
| Some x -> pp_print_string fmt x
| None -> self#varname fmt a
let shortname = Extlib.string_del_prefix prefix a in
self#varname fmt @@ Option.value ~default:a shortname
with Stack.Empty ->
self#varname fmt a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment