Skip to content

Commit

Permalink
Merge pull request #1310 from lf-lang/ts-customArg
Browse files Browse the repository at this point in the history
Removal of error reporting markers from parameter types
  • Loading branch information
lhstrh authored Aug 12, 2022
2 parents 46d924b + 6158015 commit 773d8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org.lflang/src/org/lflang/generator/TargetTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ default String getTargetType(InferredType type) {
} else if (type.isVariableSizeList) {
return getTargetVariableSizeListType(type.baseType());
}
return type.toText();
return type.toOriginalText();
}

/**
Expand Down

0 comments on commit 773d8f9

Please # to comment.