Robert J. Simmons

Results 48 issues of Robert J. Simmons

If `blah.txt` contains the following contents: ``` whatever = 6 + 12 ``` `elm-format` (version 0.8.5) will change the file to one that has different semantics: ``` % ./node_modules/.bin/elm-format blah.txt...

I don't know what could be going on with this seemingly innocent grammar: ``` @{% const mooLexer = require('moo').compile({ space: { match:/[ \t\n]+/, lineBreaks: true }, ident: { match: /[a-z][a-zA-Z0-9_]*/,...

bug

Either one of two (backwards non-compatible) changes would make things easier for implementers: * Have the default `Tracer.startSpan` implementation call `Span.addTags` after calling the `Span` constructor. * Specify that addTags...

Gollum will turn `[[Page#wiki-anchor]]` into a link to `{base-path}Page#wiki-anchor`, but gollum-site appears to turn `[[Page#wiki-anchor]]` into a link to `{base-path}Page.html`, throwing away the #wiki-anchor portion.

I already annotate code that I expect to fail in libraries, it would be nice if CIDRE would suppress these errors where requested.

Truly a "Expected: ?.vector, got: ?.vector" esque error, courtesy of https://github.com/robsimmons/l10/blob/bug6/sml/splitting.sml#L67-70 (which does normal-sml-typecheck). If you can't tell, from the annotation, I played around with this one for awhile, to...

Ironically, I think it's in your code (pqueue-lazy-paring.sml). ``` - Cidre.make "/Users/rjsimmon/.smackage/lib/cmlib/v0.4.0/cmlib.mlb"; ``` gives me two warnings - one of them is where I'd added a nonexhaustive match ignore annotation...

``` (*[ datasort true = true ]*) fun f x = let (*[ val q: true ]*) val (q, _) = (false, 3) in q end ``` Rowan says the...

Bad news @wooorm - micromark/micromark#169, or something like it, is an issue here as well - I haven't yet grokked your edit maps, but either they don't solve the quadratic-complexity...

SEQ_CONCAT (n-ary) `concat [[a], [b], c] [d] [e, f] is [[a], [b], c, d, e, f]` Can be run backwards as long as there's only one free variable (prefix/postfix matching)...