Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit c7d9e16

Browse files
perostOpenModelica-Hudson
authored andcommitted
[NF] Fix Call.typeCall.
- Restore mistakenly removed case for TYPED_CALL. Belonging to [master]: - #2705
1 parent f34bf81 commit c7d9e16

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Compiler/NFFrontEnd/NFCall.mo

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,13 @@ uniontype Call
234234
then
235235
Expression.CALL(ty_call);
236236

237+
case TYPED_CALL()
238+
algorithm
239+
ty := call.ty;
240+
var := call.var;
241+
then
242+
callExp;
243+
237244
case TYPED_ARRAY_CONSTRUCTOR()
238245
algorithm
239246
ty := call.ty;

0 commit comments

Comments
 (0)