dart_eval icon indicating copy to clipboard operation
dart_eval copied to clipboard

Extensible Dart interpreter for Dart with full interop

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

By extending another eval class I mean a eval class which already extends a bridge class. I only want my eval class to extend this class and only override two...

bug

This code is working print( 'pincode2: ${data.partyInfo?.address != null ? data.partyInfo!.address?.pincode : ''}'); but this code not work print('pincode3: ${data.partyInfo?.address?.pincode}'); ![image](https://github.com/ethanblake4/dart_eval/assets/13608248/03874bc7-b926-40c9-be91-0f667b48df4c) Kindly resolve it.

if with single condition works well. ![Screenshot 2024-04-17 142906](https://github.com/ethanblake4/dart_eval/assets/13608248/e74e6cc3-66bf-4ce0-9ce9-3a023fe73343) If with multiple conditions - not worked ![Screenshot 2024-04-17 143054](https://github.com/ethanblake4/dart_eval/assets/13608248/22882f97-5be8-4afa-81da-331c1427c594) Widget buildHeader(SaleData sdata) { if (sdata.qrCode != null && sdata.qrCode!.isNotEmpty) {...

Add support for string & some math functions like toStringAsFixed, abs(), double.infinity

functions which returns single object is works well, but functions which returns collection of objects not worked. kindly add support for this. This type of functions not supported. List buildSummary(List...

Extension is frequently used, but extension it is not support. It it possible to write a Wrapper for extension? ``` extension StringExt on String { int toNumber() { return int.parse(this);...

here I am trying to catch the error thrown by loadMediaDetails but I am unable to do so. ``` import 'dart:io'; import 'package:meiyou_extenstions/meiyou_extenstions.dart'; import 'build.dart'; void main(List args) async {...

``` final runtime = Compiler().compileWriteAndLoad({ 'example': { 'main.dart': ''' import 'dart:convert'; String main() { final json = jsonDecode("""{ "title": "One Piece Movie 01", "type": "movie", "year": 2000, "poster": { "formats":...