Andrey Tarantsov

Results 12 issues of Andrey Tarantsov

According to the domain module docs (and common sense), in case of an unhandled exception the process should stop accepting new connections and eventually shut down. A sane default behavior...

Hey, I'm reading the source code prior to using this library in our app, and found a memory model violation when running in token mode. The problem is with `setTokenHeader`:...

Hey, I've recently Ctrl-Z'ed (i.e. stopped) modd, and after about a day tried to resume it, which immediately got me this panic: ``` panic: unhandled error: notify.FSEventsMustScanSubDirs|notify.FSEventsUserDropped goroutine 6 [running]:...

Hey, I've recently Ctrl-Z'ed (i.e. stopped) modd, and after about a day tried to resume it, which immediately got me this panic: ``` panic: unhandled error: notify.FSEventsMustScanSubDirs|notify.FSEventsUserDropped goroutine 6 [running]:...

Fix a missing parenthesis when generating code for a new() statement applied to an expression, like the example: ``` new(require('foo'))(args) ``` which used to generate ``` new require('foo')(args) ``` resulting...

Hey, this comment in fasttime.go is a lie: > Now returns a monotonic clock value In fact, you're reading both wall time and monotonic time, and only using the wall...

1. How are we supposed to reuse/distribute macro libraries? Would be REALLY great to load macros using the same rules as Node's `require`. 2. Can I, say, write my own...

I've been playing with GorillaScript, and I strongly believe that `#`-functions should always be bound to the outer `this`, otherwise it would be a constant source of errors just like...

I understand that we're in 0.x stage, but would be nice to get at least a rough idea of which AST methods/props are going to become the public API is...

documentation

This gives an “unexpected ,” error message: ``` foo = (autocb) -> return null, 42 ``` Node.js-style async callbacks often accept multiple arguments (error and result, at least), so I...