Skip to content

Commit 0fc42c3

Browse files
committed
Prevent get fields for this on VArray when break in std
1 parent 621b273 commit 0fc42c3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hld/Eval.hx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,6 +1290,8 @@ class Eval {
12901290
return [for( i in 0...values.length ) if( values[i].t.isPtr() ) "$"+i];
12911291
case VInlined(fields):
12921292
return [for( f in fields ) f.name];
1293+
case VArray(_):
1294+
return [];
12931295
default:
12941296
return null;
12951297
}

0 commit comments

Comments
 (0)