apollovm 0.0.7 apollovm: ^0.0.7 copied to clipboard
ApolloVM is a portable VM (native, JS/Web, Flutter) that can parser, translate and run multiple languages, like Dart, Java, Kotlin and JavaScript.
0.0.7 #
- Added type
ASTTypeBool
and valueASTValueBool
. - Added
ApolloVMNullPointerException
. - Grammars & Code Generators:
- Dart & Java8:
- Support to expression comparison operators
==
,!=
,>
,<
,>=
,<=
.
- Support to expression comparison operators
- Dart & Java8:
- Upgrade: petitparser: ^4.1.0
0.0.6 #
- Grammars:
- Dart:
- Added support for string templates:
- including variable access:
$x
. - including expressions:
${ x * 2 }
. - Not implemented for multiline string yet.
- including variable access:
- Added support for string templates:
- Java8:
- Support for string concatenation.
- Dart:
- Code Generators:
- Java8:
- Translate string templates to Java String concatenations.
- Java8:
0.0.5 #
- Grammars:
- Dart:
- Raw single line and raw multiline line strings.
- Improved parser tests for literal String.
- Dart:
0.0.4 #
- Added type check:
ASTType.isInstance
.- Function call now checks type signature and type inheritance.
- Grammars:
- Dart:
- Single line and multiline line strings with escaped chars.
- Java8:
- Single line strings with escaped chars.
- Dart:
0.0.3 #
- Removed
ASTCodeGenerator
, that is language specific now:ApolloCodeGenerator
. - Better external function mapping.
- Grammars:
- Dart:
- Expression operations:
+
,-
,*
,/
,~/
.
- Expression operations:
- Java8:
- Expression operations:
+
,-
,*
,/
.
- Expression operations:
- Dart:
- Improved tests.
0.0.2 #
- Improved execution:
- Now can call a class method or a function.
- Improved code generation:
- Now supporting Java8 and Dart.
- Grammars:
- Dart:
- Basic class definition.
- Java8:
- Basic class definition.
- Dart:
0.0.1 #
- Basic Dart and Java8 support.
- Initial version, created by Stagehand