DanielXMoore / Civet

A TypeScript superset that favors more types and less typing
https://civet.dev
MIT License
1.33k stars 28 forks source link

Pipeline unwrapping should add refs #1172

Open edemaine opened 2 months ago

edemaine commented 2 months ago
x() |> &+&

currently compiles to

x()+x()

We should instead add a ref here.

(Previously, it wasn't possible to use the & multiple times. Now it is.)