Skip to content

Commit

Permalink
antlr3 library changed name to omantlr3
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@25892 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed May 3, 2015
1 parent 74d8748 commit d834a7f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Compiler/FrontEnd/ParserExt.mo
Expand Up @@ -51,7 +51,7 @@ public function parse "Parse a mo-file"
input Boolean runningTestsuite;
output Absyn.Program outProgram;

external "C" outProgram=ParserExt_parse(filename, infoFilename, acceptedGram, languageStandardInt, encoding, runningTestsuite) annotation(Library = {"omparse","antlr3","omcruntime"});
external "C" outProgram=ParserExt_parse(filename, infoFilename, acceptedGram, languageStandardInt, encoding, runningTestsuite) annotation(Library = {"omparse","omantlr3","omcruntime"});
end parse;

public function parseexp "Parse a mos-file"
Expand All @@ -62,7 +62,7 @@ public function parseexp "Parse a mos-file"
input Boolean runningTestsuite;
output GlobalScript.Statements outStatements;

external "C" outStatements=ParserExt_parseexp(filename, infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","antlr3","omcruntime"});
external "C" outStatements=ParserExt_parseexp(filename, infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","omantlr3","omcruntime"});
end parseexp;

public function parsestring "Parse a string as if it were a stored definition"
Expand All @@ -72,7 +72,7 @@ public function parsestring "Parse a string as if it were a stored definition"
input Integer languageStandardInt;
input Boolean runningTestsuite;
output Absyn.Program outProgram;
external "C" outProgram=ParserExt_parsestring(str,infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","antlr3","omcruntime"});
external "C" outProgram=ParserExt_parsestring(str,infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","omantlr3","omcruntime"});
end parsestring;

public function parsestringexp "Parse a string as if it was a sequence of statements"
Expand All @@ -82,7 +82,7 @@ public function parsestringexp "Parse a string as if it was a sequence of statem
input Integer languageStandardInt;
input Boolean runningTestsuite;
output GlobalScript.Statements outStatements;
external "C" outStatements=ParserExt_parsestringexp(str,infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","antlr3","omcruntime"});
external "C" outStatements=ParserExt_parsestringexp(str,infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","omantlr3","omcruntime"});
end parsestringexp;

public function stringPath
Expand All @@ -92,7 +92,7 @@ public function stringPath
input Integer languageStandardInt;
input Boolean runningTestsuite;
output Absyn.Path path;
external "C" path=ParserExt_stringPath(str, infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","antlr3","omcruntime"});
external "C" path=ParserExt_stringPath(str, infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","omantlr3","omcruntime"});
end stringPath;

public function stringCref
Expand All @@ -102,7 +102,7 @@ public function stringCref
input Integer languageStandardInt;
input Boolean runningTestsuite;
output Absyn.ComponentRef cref;
external "C" cref=ParserExt_stringCref(str, infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","antlr3","omcruntime"});
external "C" cref=ParserExt_stringCref(str, infoFilename, acceptedGram, languageStandardInt, runningTestsuite) annotation(Library = {"omparse","omantlr3","omcruntime"});
end stringCref;

annotation(__OpenModelica_Interface="frontend");
Expand Down

0 comments on commit d834a7f

Please sign in to comment.