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
List comprehensions are a useful syntactic sugar for creating lists from other iterable things. A list comprehension can be trivially converted into a loop under the hood, but this would require special changes to the parser to switch from a list creation expression to a list comprehension expression.
At this time there are no other parser backtracking or tree peek-ahead, so this infrastructure would need to be built.
The text was updated successfully, but these errors were encountered:
List comprehensions are a useful syntactic sugar for creating lists from other iterable things. A list comprehension can be trivially converted into a loop under the hood, but this would require special changes to the parser to switch from a list creation expression to a list comprehension expression.
At this time there are no other parser backtracking or tree peek-ahead, so this infrastructure would need to be built.
The text was updated successfully, but these errors were encountered: