mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-08-05 07:28:18 +00:00
Working on structs with arrays.
This commit is contained in:
@@ -489,7 +489,7 @@ public class Pass1UnwindStructValues extends Pass1Base {
|
||||
|
||||
@Override
|
||||
public List<String> getMemberNames() {
|
||||
Collection<Variable> structMemberVars = structDefinition.getAllVariables(false);
|
||||
Collection<Variable> structMemberVars = structDefinition.getAllVars(false);
|
||||
ArrayList<String> memberNames = new ArrayList<>();
|
||||
for(Variable structMemberVar : structMemberVars) {
|
||||
memberNames.add(structMemberVar.getLocalName());
|
||||
|
Reference in New Issue
Block a user