Michael Bradley
Michael Bradley
I have experienced the exact same problem with `scope.macro`, while other macros work, e.g. `it` from [param.macro](https://github.com/citycide/param.macro#standalone-plugin).
At some point it seems the "not through maven" policy changed: http://search.maven.org/#search|ga|1|a%3A%22Saxon-HE%22 Any possibility that this library will be updated to depend on more recent versions of Saxon(-HE)? Note there's...
@matthewp perhaps [Shared Memory and Atomics for ECMAScript](https://github.com/tc39/ecmascript_sharedmem) is also relevant at this point? Not sure. N.B. the proposal has been merged into the ECMAScript specification as of Feb 2017.
I believe the more pressing need is for validations in `toV3`, and that's now covered pretty well in #95. The reason for the need is that the underlying kdf functions...
This is owing to the behavior of Node's built in `Buffer.from`. In a Node REPL: ``` > Buffer.from('ff', 'hex') > Buffer.from('fF' + 'f', 'hex') > Buffer.from('ff' + 'Z', 'hex') >...
Earlier today, I saw this behavior in a single-run. So it would seem to be infrequent for single-runs vs. autowatch, but can happen in either scenario. I've also seen autowatch...
I'm experiencing the same thing on macOS, e.g. in my `*lsp-log*` Emacs buffer I see: ``` The following file /Users/michael/.nimble/pkgs/libp2p- is missing, ignoring from the results. ``` The actual path...
Any ideas how this can be investigated further? As @arjunkathuria suggested, it could just be an emacs thing, but it's a real pain, requiring one to manually rename directories in...
Wild guess... since paths involve conversion to URIs, maybe the `#...` part of `foo-#...` is getting cut off because that part is a [URI fragment](https://en.wikipedia.org/wiki/URI_fragment)/
> can you upgrade to nim 1.4 or upper ? https://github.com/nim-lang/Nim/blob/018ae963ba83934a68d815c3c1c44c06e8ec6178/lib/pure/asyncmacro.nim#L358 My hope was to have it working with Nim v1.2, since that is the version of the compiler built...