Skip to content

Commit 47150ff

Browse files
committed
Add missing class attributes
1 parent e980509 commit 47150ff

File tree

1 file changed

+3
-1
lines changed
  • Deeploy/CommonExtensions/CodeTransformationPasses

1 file changed

+3
-1
lines changed

Deeploy/CommonExtensions/CodeTransformationPasses/Closure.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ def baseBlock(self):
8585

8686
class ClosureGeneration(CodeTransformationPass, IntrospectiveCodeTransformationMixIn):
8787

88-
closureStructArgs: Struct
88+
closureStructArgType: Dict[str, Type[Union[Pointer, Immediate, Struct]]]
89+
closureStructArgs: Dict[str, Union[Pointer, Immediate, Struct]]
90+
closureStruct: Struct
8991

9092
def __init__(self,
9193
closureCallTemplate: NodeTemplate = _closureCallTemplate,

0 commit comments

Comments
 (0)