Skip to content

Commit

Permalink
Fixed bug (MC 461)
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2157 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Peter Aronsson committed Feb 21, 2006
1 parent cbd2040 commit 4f6b136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/Interactive.rml
Expand Up @@ -8019,13 +8019,13 @@ relation set_component_comment_in_parts:(Absyn.ClassPart list,

rule set_component_comment_in_elementitems(elts,cr1,cmt) => elts'
-----------------------------------------------
set_component_comment_in_parts(Absyn.PUBLIC(elts)::xs,cr1,cmt)
set_component_comment_in_parts(Absyn.PROTECTED(elts)::xs,cr1,cmt)
=> Absyn.PROTECTED(elts')::xs

(* rule above failed *)
rule set_component_comment_in_parts(xs,cr1,cmt) => xs'
-------------------------------
set_component_comment_in_parts(Absyn.PUBLIC(e)::xs,cr1,cmt)
set_component_comment_in_parts(Absyn.PROTECTED(e)::xs,cr1,cmt)
=> (Absyn.PROTECTED(e)::xs')

rule set_component_comment_in_parts(xs,cr1,cmt) => xs'
Expand Down

0 comments on commit 4f6b136

Please sign in to comment.