ethanblake4 / dart_eval

Extensible Dart interpreter for Dart with full interop
https://pub.dev/packages/dart_eval
BSD 3-Clause "New" or "Revised" License
334 stars 40 forks source link

when to support call method in dart_eval runtime #182

Closed yanweimin7 closed 9 months ago

yanweimin7 commented 9 months ago

currently i saw all method are throw UnimplementedError

image

ethanblake4 commented 9 months ago

Currently these cannot be auto-generated because there are a lot of edge cases. I am working on it, but in the meantime you have to write the code for this yourself (you can look through the dart_eval and flutter_eval codebase to see examples of how to do it)

yanweimin7 commented 9 months ago

got it! , thanks!

Currently these cannot be auto-generated because there are a lot of edge cases. I am working on it, but in the meantime you have to write the code for this yourself (you can look through the dart_eval and flutter_eval codebase to see examples of how to do it)