Michael R Fairhurst

Results 86 issues of Michael R Fairhurst

Based on discussion in gitter, summarized and with additional research: found a good reference implementation in the Dart VM. https://github.com/dart-lang/sdk/blob/a1f784e643b98c6b7fbcd5d409f8faa7e33a5c9a/runtime/vm/stack_frame.cc#L110 You can see here that during gc (and probably debugging)...

enhancement

This is unused from Dart 2.1 and on when dart:core exports Future/Stream

Dart 2 was originally going to have "voidness propagation" Note that while this is illegal: A: ``` void x; int y = x; // error! use of void ``` this...

type-enhancement
type-question
lint request
P3

Should this be part of void_checks? See https://github.com/dart-lang/sdk/issues/34171 Basically, ``` final x = list.removeWhere(...); ``` is legal, but x is an unusable variable, so it doesn't really have a point....

type-question
lint request
P3

%lookahead flag x; prog: optionallyPrefixed; optionallyPrefixed: prefix? usesLookahead ; usesLookahead: [x] y | z; This reported that x was unused in optionallyPrefixed, until I changed that production to optionallyPrefixed: usesLookahead...

Hey Milan, just gonna share a few things I saw I wish this library had. First up: I'm doing a line chart of values over time...is there a way to...

I noticed that whites are often not treated very well by this algorithm. Perhaps its just a more noticeable error or perhaps its an algorithmic one. Are you using a...

When trying to use htmlmin with an svg, even with all minification settings turned off ``` .... ``` was turned into ``` ``` Would be nice if (and maybe there...

No error output when I exit or open or anything. I'm comfortable digging into this myself. My first question would be, do you know where it _should_ be saving the...

From spec: https://html.spec.whatwg.org/#parsing-main-intable ``` 12.2.5.4.9 The "in table" insertion mode When the user agent is to apply the rules for the "in table" insertion mode, the user agent must handle...