Is there a way to color the calling Ada procedures or functions in Gnat GPS IDE? Is there any custom solution to this? Check the comment in the following code to see what I mean:
package body Pkg is
function Get_Amount (a : b) return Integer is
begin
return 0;
end Get_Amount;
procedure Print_Owing is
begin
Get_Amount (x); --This call here shall be colored if possible but its not.
end Print_Owing;
end Pkg;