GH-194 let patterns #697
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "GH-194-let-patterns"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Created by: UlfNorell
Fixes #194
Work-in-progress. Sits on top of #205.Also adds pattern matching is list comprehension generators
Also also
[1, 2, 3]
is compiled toPUSH [1, 2, 3]
instead of a series ofCONS
instructions)Created by: tolbrino
There doesn't seem to be a test case for the match support in list comprehensions.
Created by: UlfNorell
Good catch. I added it to my temp test file instead of the actual test case.
Created by: hanssv
Review: Approved
Created by: tolbrino
So this will crash if
some = None
?Created by: tolbrino
Here the pattern match acts as a filter?
Created by: tolbrino
Review: Approved
Created by: UlfNorell
Yes, this is equivalent to
Created by: UlfNorell
Indeed
Merged by: UlfNorell at 2019-12-16 16:04:50 UTC