├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── expressions_example.dart ├── lib ├── expressions.dart └── src │ ├── async_evaluator.dart │ ├── evaluator.dart │ ├── expressions.dart │ └── parser.dart ├── pubspec.yaml └── test ├── async_evaluator_test.dart └── expressions_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: dart 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/expressions_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/example/expressions_example.dart -------------------------------------------------------------------------------- /lib/expressions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/lib/expressions.dart -------------------------------------------------------------------------------- /lib/src/async_evaluator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/lib/src/async_evaluator.dart -------------------------------------------------------------------------------- /lib/src/evaluator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/lib/src/evaluator.dart -------------------------------------------------------------------------------- /lib/src/expressions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/lib/src/expressions.dart -------------------------------------------------------------------------------- /lib/src/parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/lib/src/parser.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/async_evaluator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/test/async_evaluator_test.dart -------------------------------------------------------------------------------- /test/expressions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsup-dart/expressions/HEAD/test/expressions_test.dart --------------------------------------------------------------------------------