Skip to content

Commit

Permalink
Handle more tokens
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@58 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
x97davka committed Dec 5, 1997
1 parent 1decaa0 commit 4df116e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion modeq/ast/attrib.c
Expand Up @@ -71,6 +71,12 @@ void print_attr(Attrib *attr, FILE *f)
tokprinter(CLASS_);
tokprinter(BOUNDARY);
tokprinter(MODEL);
tokprinter(FUNCTION);
tokprinter(PACKAGE);
tokprinter(RECORD);
tokprinter(BLOCK);
tokprinter(CONNECTOR);
tokprinter(TYPE);
tokprinter(PARTIAL);
tokprinter(EXTENDS);
tokprinter(PUBLIC);
Expand All @@ -80,13 +86,17 @@ void print_attr(Attrib *attr, FILE *f)
tokprinter(PARAMETER);
tokprinter(CONSTANT);
tokprinter(EQUATION);
tokprinter(FINAL);
tokprinter(LPAR);
tokprinter(RPAR);
tokprinter(DOT);
tokprinter(EQUALS);
tokprinter(ASSIGN);
tokprinter(PLUS);
tokprinter(MINUS);
tokprinter(COMPONENTS);
tokprinter(TYPE_PREFIX);
tokprinter(FUNCALL);
tokprinter(EQUALS);
tokprinter(ELEMENT);

case zzEOF_TOKEN:
Expand Down

0 comments on commit 4df116e

Please sign in to comment.