Skip to content

Commit 3769016

Browse files
committed
Added Index method on case generate.
1 parent 6a15648 commit 3769016

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pyVHDLModel/SyntaxModel.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3406,6 +3406,10 @@ def SelectExpression(self) -> ExpressionUnion:
34063406
def Cases(self) -> List[GenerateCase]:
34073407
return self._cases
34083408

3409+
def Index(self):
3410+
for case in self._cases:
3411+
case.Index()
3412+
34093413

34103414
@export
34113415
class ForGenerateStatement(GenerateStatement, ConcurrentDeclarations, ConcurrentStatements):

0 commit comments

Comments
 (0)