Ethan

Results 80 comments of Ethan

I believe this was done on purpose to work around some kind of issue in dart_eval, although I can't really remember now what it was. I'll try to write some...

Hi! It is impossible for dart_eval to access the packages directly, this is a Dart limitation. There are two ways to do it - either you can create [bindings](https://pub.dev/packages/dart_eval#wrapper-interop) or...

> I didn't think it would require special treatment I realized I didn't really explain this well. flutter_eval does support method channels so technically it could directly compile all of...

This is because `items` is `dynamic`. If you put `(List items) => items.map(...)` it will work fine. Frankly, dart_eval has no idea what to do with `dynamic` as it cannot...

Wow, cool. I thought this might need a graph setup and this is cleaner than I thought it'd be :) A few issues: First off, there's nothing about this particular...

> I have a file outside of dart eval that rebuilds all classes > my own layout engine based largely on Flutter That's really cool :) Would love to see...

> Using topLevelDeclarationsMap for your main loop seems inappropriate - visibleDeclarationsByIndex is more likely what you're looking for I also realized I oversimplified this. Fundamentally, your idea of grouping the...

Ok. I doubt I'll take a stab at it anytime soon but I'll let you know if that changes