This commit is contained in:
2026-07-05 08:07:50 +10:00
parent 7cc1eed787
commit 3b8bcdf020
2 changed files with 8 additions and 3 deletions

View File

@@ -96,6 +96,10 @@ GroundBytecodeValue _GroundNewBytecodeValue(GroundValue value) {
// TODO - convert to bytecode object
break;
}
case GroundType_CoreType: {
bv.as.CoreType = value.as.CoreType;
break;
}
}
return bv;