Skip to content

Commit

Permalink
- Exp.printExp:
Browse files Browse the repository at this point in the history
  + Added WILD
  + Added VALUEBLOCK


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@4936 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Feb 11, 2010
1 parent a83238e commit 08a53fa
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Compiler/Exp.mo
Expand Up @@ -5697,6 +5697,11 @@ algorithm
Ident s;
list<Subscript> subs;
ComponentRef cr;
case DAE.WILD()
equation
Print.printBuf("_");
then
();
case DAE.CREF_IDENT(ident = s,subscriptLst = subs)
equation
printComponentRef2(s, subs);
Expand Down Expand Up @@ -6089,6 +6094,12 @@ algorithm
then
();

case (DAE.VALUEBLOCK(_,_,_,_),_)
equation
Print.printBuf("#VALUEBLOCK#");
then
();

case (_,_)
equation
Print.printBuf("#UNKNOWN EXPRESSION# ----eee ");
Expand Down

0 comments on commit 08a53fa

Please sign in to comment.