Add new ...
ellipsis keyword
#7440
Labels
can
Relates to the Canonicalization compiler stage
intermediate issue
Likely good for someone who has completed a few other issues
parsing
Relates to the Parsing compiler stage
type checking
Relates to type checking compiler stage
To support incomplete code, we want to add a new
...
ellipsis keyword (not an operator, since it doesn't operate on anything, even though it's not a word). It will be a syntax node that takes no arguments and acts somewhat likecrash "Not yet written"
. The difference being that:A good way to implement this would probably be to desugar this to
crash "Not yet written"
, but add akind: CrashKind
field onroc_can
crash nodes to report compilation issues differently for ellipses and normal crashes.The text was updated successfully, but these errors were encountered: