有没有办法在 Gnat GPS IDE 中为调用 Ada 程序或函数着色?是否有任何自定义解决方案?检查以下代码中的注释以了解我的意思:
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;