You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ada has many aspects that are introduced using the keyword with. For example, especially with SPARK, we may place many aspects on suprograms:
procedure Parse_Formula
(Formula : Unbounded_String;
Algebra : out Algebra_Tree;
Error : in out Boolean;
Message : in out Unbounded_String)
with
Pre => Length (Formula) > 1,
Post => (if not Error then Algebra /= null),
Subprogram_Variant => (Decreases => Length (Formula));
Currently, these are not highlighted at all. It would be helpful to the user if known aspects received some subtle syntax highlight, so that they know they've used a known aspect.
The text was updated successfully, but these errors were encountered:
Ada has many aspects that are introduced using the keyword
with
. For example, especially with SPARK, we may place many aspects on suprograms:Currently, these are not highlighted at all. It would be helpful to the user if known aspects received some subtle syntax highlight, so that they know they've used a known aspect.
The text was updated successfully, but these errors were encountered: