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
This issue collects some internal discussion regarding possible improvements to the parsing stack.
Slack discussion identified the following tasks (discussion has been summarized):
Iterate on syntax in the current parsing stack, so we can settle on something aesthethicaly pleasing for users.
For example:
remove sum/records/prod keywords and just rely on RHS to be uniquely parseable { record }, (prod), | sum |. This would be helpful for the issue identified here
special unit type syntax, MaybeInt = Maybe Int (which would now be prod MaybeInt = (Maybe Int))
standalone derive statements are a bit verbose (rather why not just derive Eq, Json, PlutusData)
Update the formatter (I think that's basic stuff we need for automated code quality)
lbf format should be tested with a forall source. meaningOf lbf format source = meaningOf source,
treesitter grammar to have highlighting and symbol extractions in GH and editors for .lbf. files (improvement of life)
Align the parsing stack with something we fund robust and aligned with best practices (whilst making sure our error messages are amazing). Related issue comment
The text was updated successfully, but these errors were encountered:
This issue collects some internal discussion regarding possible improvements to the parsing stack.
Slack discussion identified the following tasks (discussion has been summarized):
Iterate on syntax in the current parsing stack, so we can settle on something aesthethicaly pleasing for users.
For example:
remove sum/records/prod keywords and just rely on RHS to be uniquely parseable
{ record }
,(prod)
,| sum |
. This would be helpful for the issue identified herespecial unit type syntax,
MaybeInt = Maybe Int
(which would now be prodMaybeInt = (Maybe Int)
)standalone
derive
statements are a bit verbose (rather why not justderive Eq
,Json
,PlutusData
)Update the formatter (I think that's basic stuff we need for automated code quality)
meaningOf lbf format source = meaningOf source
,treesitter grammar to have highlighting and symbol extractions in GH and editors for .lbf. files (improvement of life)
Align the parsing stack with something we fund robust and aligned with best practices (whilst making sure our error messages are amazing). Related issue comment
The text was updated successfully, but these errors were encountered: