We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd52f68 commit e40c470Copy full SHA for e40c470
tests/unit/src/scripthost/Issue12376.hx
@@ -1,15 +1,15 @@
1
package scripthost;
2
3
#if cpp
4
-@:keep class HostParent {
+@:keep class HostParent12376 {
5
public function new() {}
6
7
public function methodA() {
8
return "HostParent.methodA()";
9
}
10
11
12
-@:keep class HostChild extends HostParent {
+@:keep class HostChild12376 extends HostParent12376 {
13
override function methodA() {
14
return "HostChild.methodA()";
15
tests/unit/src/unit/issues/Issue12376.hx
@@ -14,7 +14,7 @@ class Issue12376 extends Test {
16
#if cppia
17
-private class ScriptChild extends HostChild {
+private class ScriptChild extends HostChild12376 {
18
override function methodB() {
19
return 'ScriptChild.methodB()';
20
0 commit comments