dart_eval icon indicating copy to clipboard operation
dart_eval copied to clipboard

Extensible Dart interpreter for Dart with full interop

Results 62 dart_eval issues
Sort by recently updated
recently updated
newest added

I'm trying to create a wrapper for a class ``` class AttendanceEntity extends OriginalDomainEntity { AttendanceEntity({ required this.visitTypeOid, required this.attendanceNumber, required super.originalOid, }); final BigInt attendanceNumber; final int visitTypeOid; }...

good first issue
standard library

Hi, not sure why this is hapenning, but here is a simple example `dynamic main(){Map k = {'a' :{'b':'c'}}; k['a']['b'] = 'd';}` dart_eval runtime exception: type '_Map' is not a...

This pull resolve problem of acess maps keys of null or undefinded. This bellow example, with old code, return error in "lib\src\eval\runtime\ops\objects.dart" in line 100: `final method = ((object as...

Very low priority, but right now instead of `Constructor(super.param)` we need to write `Constructor(ParamType param) : super(param)`. I know [there is a test](https://github.com/ethanblake4/dart_eval/blob/master/test/class_test.dart#L247) for something similar. I expected maybe `Constructor(super.param)...

Hello, I'd really want to add dart_eval to my projet, but sadly, it's incompatible with the newer hive_ce_generator versions because it doesn't support analyzer 8.x. Would it be possible to...

**I defined such a call in the hot update** ``` @RuntimeOverride('#cpAboutPage') Widget buildHotAboutPage(BuildContext context, Future Function(String method, Map data) methodFunction) { return HotAboutPage(methodFunction: methodFunction); } ``` **In the main program,...

Minimal test case: ```dart import 'package:eval_annotation/eval_annotation.dart'; @Bind() class Test { final int v; Test(this.v); Test operator +(Test other) { return (Test(this.v + other.v)); } } ``` Errors with: ``` Could...

Amazing work on this library and thank you, its a really powerful feature and super useful in my projects. My bug report follows: **Bug:** Nested Ternary with Bridged String Variable...

How to use .floor() and other extension methods like .round() ? Code: `int main(args) { return (2025/100).floor(); }` Exception: `CompileError: Unknown method int.floor at "(2025 / 100).floor()" (file package:default/main.dart)`

good first issue
standard library