We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69c687f commit 01e0c00Copy full SHA for 01e0c00
4 files changed
README.md
@@ -69,7 +69,6 @@ test.HelloWorldAbstract
69
70
test/HelloWorldAbstract.hx :
71
```haxe
72
-@:keep
73
abstract HelloWorldAbstract(String) from String to String
74
{
75
public static function rulescriptPrint():HelloWorldAbstract
test/src/Main.hx
@@ -1,6 +1,8 @@
1
package;
2
3
+import TestAbstract;
4
import rulescript.*;
5
+import test.HelloWorldAbstract;
6
7
class Main
8
test/src/TestAbstract.hx
@@ -1,6 +1,5 @@
abstract TestAbstract(Test) from Test to Test
@:from
test/src/test/HelloWorldAbstract.hx
package test;
enum abstract HelloWorldAbstract(String) from String to String
0 commit comments