DanielXMoore / Civet

A TypeScript superset that favors more types and less typing

Home Page:https://civet.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pipeline unwrapping should add refs

edemaine opened this issue · comments

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.)