mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-06 16:57:25 +00:00
ZoneCodeGenerator: Replace OperandDynamics static array indices with Evaluations
This commit is contained in:
@@ -9,7 +9,7 @@ namespace ZoneCodeGenerator.Domain.Evaluation
|
||||
{
|
||||
public StructureInformation Structure { get; }
|
||||
public IList<MemberInformation> ReferencedMemberChain { get; }
|
||||
public IList<int> ArrayIndices { get; }
|
||||
public IList<IEvaluation> ArrayIndices { get; }
|
||||
|
||||
public bool IsStatic => false;
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace ZoneCodeGenerator.Domain.Evaluation
|
||||
{
|
||||
Structure = structure;
|
||||
ReferencedMemberChain = new List<MemberInformation>(memberChain);
|
||||
ArrayIndices = new List<int>();
|
||||
ArrayIndices = new List<IEvaluation>();
|
||||
}
|
||||
|
||||
public int EvaluateNumeric()
|
||||
|
Reference in New Issue
Block a user