Dave Jeffery

Results 57 issues of Dave Jeffery

I already have the buffers of the source files in memory. It would be nice if I could just pipe the buffers straight to `icon-gen`. Right now I need to...

Looking for a lightweight firestore library for Node.js.

Take the following code: ``` global.install-win??.focus??() ``` An over-simplified version of the assignments/executions in JS might be: ``` javascript tmp$0 = global.installWin; tmp$1 = tmp$0.focus; tmp$1(); ``` This doesn't retain...

For example, this fails with `Illegal clause` error: ``` async manual-install = (match) -> "Nginx" -> await nginx-setup.manual-details() "Apache" -> await apache-setup.manual-details() ``` But the longhand works fine: ``` async...

I think this was discussed before in Gitter but I just wanted to make a note of this here so it wouldn't get lost. ``` fib = *-> var {a,...

In the documentation it says that the following code gives an immutable variable: ``` let y = "hello" ;; const variable (immutable) ``` It compiles to the equivalent javascript and...

For example this works fine: ``` test-func = (foo = "foo", bar = "bar") -> return "hello world" test-func() ``` But this breaks (with a match error): ``` test-func =...

Currently it is possible to do: ``` methods = { init = async with -> ;; async function here } ``` This is not very consistent with other `async` functions...

This works: ``` methods = { init = async with -> ;; async function here } ``` But this does not: ``` methods = { init = async with @->...