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

Trailing `or` on newline after callback function in implicit application parses as nested implicit function call instead of method body

STRd6 opened this issue · comments

x.filter ([a, b]) ->
  a or 
  b
x.filter(function([a, b]) {})(
  a || 
  b)

The issue is actually the space after the or. Hopefully an easy fix... investigating now.