Allow multiple patterns with %, e.g. (% x y = (f) (z . t) = (g x) in … or (w) = (h y) in … #2

Open
opened 2016-04-14 00:41:08 +01:00 by SuzanneSoy · 0 comments
SuzanneSoy commented 2016-04-14 00:41:08 +01:00 (Migrated from github.com)

The % i.e. let … in … form could support several cases, a match does. The general syntax would be (let (~seq or (~seq bindings … = expr) … (~optional in) body …) …), with the first or optional. If the form directly starts with or without any binding nor body, then it should not consider that there is a successful empty match with an empty body at the beginning, but instead just strip the first or. If empty bodies were allowed, to have an empty match (which will always succeed and therefore make what follows dead code), one could write (let in or dead-variables = (dead-code) in dead-code) to disambiguate.

Here is an example use:

(% x y = (f)
   (z . t) = (g x)
   in
   <code>
   or
   (w) = (h y)
   in
   <code>
The `%` i.e. `let … in …` form could support several cases, a `match` does. The general syntax would be `(let (~seq or (~seq bindings … = expr) … (~optional in) body …) …)`, with the first `or` optional. If the form directly starts with `or` without any binding nor body, then it should _not_ consider that there is a successful empty match with an empty body at the beginning, but instead just strip the first `or`. If empty bodies were allowed, to have an empty match (which will always succeed and therefore make what follows dead code), one could write `(let in or dead-variables = (dead-code) in dead-code)` to disambiguate. Here is an example use: ``` racket (% x y = (f) (z . t) = (g x) in <code> or (w) = (h y) in <code> ```
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: suzanne.soy/phc-toolkit#2
No description provided.