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
ParsedHashDirectives can currently only have string arguments.
This means that the syntax for HashDirectives is constrained to having quoted string arguments.
This makes some of the Hash directive syntax a little clunky.
#time "on"
(* Do lots of stuff here *)
#time "off"
probably would be nicer and perhaps easier to get right first time like this
#time on
(* Do lots of stuff here *)
#time off
Similarly no warn requires numeric error numbers to be integers:
#nowarn "1234" "1235" "99"
Is probably better expressed as:
#nowarn 1234 1235 99
The text was updated successfully, but these errors were encountered:
KevinRansom
changed the title
Allow #ParsedHashDirectives to have argument types oter than strings
Allow #ParsedHashDirectives to have argument types other than strings
May 24, 2024
KevinRansom
changed the title
Allow #ParsedHashDirectives to have argument types other than strings
Allow ParsedHashDirectives to have argument types other than strings
May 24, 2024
ParsedHashDirectives can currently only have string arguments.
This means that the syntax for HashDirectives is constrained to having quoted string arguments.
This makes some of the Hash directive syntax a little clunky.
probably would be nicer and perhaps easier to get right first time like this
Similarly no warn requires numeric error numbers to be integers:
Is probably better expressed as:
The text was updated successfully, but these errors were encountered: