oridb / mc

Myrddin Compiler
MIT License
387 stars 34 forks source link

Allow optional eol after the commas of function parameters #201

Closed typeless closed 4 years ago

typeless commented 4 years ago

So we can break long parameters into lines without '\'.

For example,

const foo = {a : byte[:], \
         b : int
}

can become

const foo = {a : byte[:],
         b : int
}