Skip to content

Commit

Permalink
Fix getClassComment
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed Jun 14, 2015
1 parent e78a319 commit 7417377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Script/CevalScript.mo
Expand Up @@ -1083,7 +1083,7 @@ algorithm
case (cache,_,"getClassComment",{Values.CODE(Absyn.C_TYPENAME(path))},st as GlobalScript.SYMBOLTABLE(ast = p),_)
equation
Absyn.CLASS(_,_,_,_,_,cdef,_) = Interactive.getPathedClassInProgram(path, p);
str = getClassComment(cdef);
str = System.unescapedString(getClassComment(cdef));
then
(cache,Values.STRING(str),st);

Expand Down

0 comments on commit 7417377

Please sign in to comment.