Michael R Fairhurst
Michael R Fairhurst
The easiest repro is probably this: ```dart void f() { x + 1; var x = 1; } ``` You should get related information saying something to the effect of...
I am having this issue as well! Please let me know if you find a solution. On Fedora 17, chrome stable 28, nexus 4 (jellybean), adbplugin 0.9.6 Here is the...
ping @lukasgit
Ping once more @lukasgit :)
Wow, that sounds horrible Lukas. :( I will happily and patiently wait, if you do find time over this weekend I'll be super grateful, and if you don't for any...
Re the two strong opinions: Its probably better to disallow assigning a `List` to a `List` in the lint, at least for now. It's easier to relax that than restrict...
My understanding was that top levels don't have inference, they get implicit dynamic. It seems like for const values we do some kind of inference, though... We did just change...
Its my understanding that this does not have any inference...`const ExistingProvider.forToken(...)` but rather gets implicit dynamic...I think that's the problem
Its probably more related to htmlmin...but in some ways, the bug is that its sent into htmlmin in the first place, instead of svgmin or something. I don't think the...
``` ngtemplates: { app: { src: ['public/angular/**/*.html', 'public/svg/**/*.svg'], dest: 'public/templates.js', options: { prefix: '/', module: 'pAngularApp', htmlmin: { collapseBooleanAttributes: false, // SVG ``` compatibility collapseWhitespace: false, removeAttributeQuotes: false, // SVG...