Skip to content

Commit

Permalink
- add a space between the comment and the variable
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@4829 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Jan 21, 2010
1 parent e641ff1 commit ff40e66
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions Compiler/DAEUtil.mo
Expand Up @@ -473,13 +473,10 @@ end printDAE;


public function dump "function: dump
This function prints the DAE in the standard output format.
"
This function prints the DAE in the standard output format."
input DAE.DAElist inDAElist;
algorithm
_:=
matchcontinue (inDAElist)
_ := matchcontinue (inDAElist)
local
list<DAE.Element> daelist;
case DAE.DAE(elementLst = daelist)
Expand All @@ -502,13 +499,10 @@ algorithm
end dump2str;

public function dump2 "function: dump2
Helper function to dump. Prints the DAE using module Print.
"
Helper function to dump. Prints the DAE using module Print."
input DAE.DAElist inDAElist;
algorithm
_:=
matchcontinue (inDAElist)
_ := matchcontinue (inDAElist)
local
String comment_str,ident,str,extdeclstr,s1;
DAE.ComponentRef cr;
Expand Down Expand Up @@ -1999,7 +1993,7 @@ algorithm
case (NONE) then "";
case (SOME(SCode.COMMENT(annopt,SOME(cmt))))
equation
str = Util.stringAppendList({"\"",cmt,"\""});
str = Util.stringAppendList({" \"",cmt,"\""});
then
str;
case (SOME(SCode.COMMENT(annopt,NONE))) then "";
Expand Down

0 comments on commit ff40e66

Please sign in to comment.