Skip to content

Commit

Permalink
Removed non needed replaceable declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRT committed Aug 12, 2019
1 parent d20e3a3 commit 3b81a3a
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions OMCompiler/Compiler/FrontEnd/SCodeUtil.mo
Original file line number Diff line number Diff line change
Expand Up @@ -1865,8 +1865,6 @@ public function traverseEEquations
output SCode.EEquation outEEquation;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.EEquation, Argument> inTuple;
output tuple<SCode.EEquation, Argument> outTuple;
Expand All @@ -1889,8 +1887,6 @@ public function traverseEEquations2
output SCode.EEquation outEEquation;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.EEquation, Argument> inTuple;
output tuple<SCode.EEquation, Argument> outTuple;
Expand Down Expand Up @@ -1943,8 +1939,6 @@ protected function traverseElseWhenEEquations
output tuple<Absyn.Exp, list<SCode.EEquation>> outElseWhen;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.EEquation, Argument> inTuple;
output tuple<SCode.EEquation, Argument> outTuple;
Expand All @@ -1968,8 +1962,6 @@ public function traverseEEquationListExps
output list<SCode.EEquation> outEEquations;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand All @@ -1989,8 +1981,6 @@ public function traverseEEquationExps
output SCode.EEquation outEEquation;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand Down Expand Up @@ -2093,8 +2083,6 @@ protected function traverseComponentRefExps
output Absyn.ComponentRef outCref;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand Down Expand Up @@ -2140,8 +2128,6 @@ protected function traverseSubscriptExps
output Absyn.Subscript outSubscript;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand Down Expand Up @@ -2174,8 +2160,6 @@ protected function traverseElseWhenExps
output tuple<Absyn.Exp, list<SCode.EEquation>> outElseWhen;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand All @@ -2201,8 +2185,6 @@ protected function traverseNamedArgExps
output Absyn.NamedArg outArg;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand Down Expand Up @@ -2232,8 +2214,6 @@ protected function traverseForIteratorExps
output Absyn.ForIterator outIterator;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArg;
Expand Down Expand Up @@ -2282,8 +2262,6 @@ public function traverseStatementsList
output list<SCode.Statement> outStatements;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.Statement, Argument> inTuple;
output tuple<SCode.Statement, Argument> outTuple;
Expand All @@ -2302,8 +2280,6 @@ public function traverseStatements
output SCode.Statement outStatement;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.Statement, Argument> inTuple;
output tuple<SCode.Statement, Argument> outTuple;
Expand All @@ -2327,8 +2303,6 @@ public function traverseStatements2
output SCode.Statement outStatement;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.Statement, Argument> inTuple;
output tuple<SCode.Statement, Argument> outTuple;
Expand Down Expand Up @@ -2397,8 +2371,6 @@ protected function traverseBranchStatements
output tuple<Absyn.Exp, list<SCode.Statement>> outBranch;
output tuple<TraverseFunc, Argument> outTuple;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input tuple<SCode.Statement, Argument> inTuple;
output tuple<SCode.Statement, Argument> outTuple;
Expand All @@ -2422,9 +2394,6 @@ public function traverseStatementListExps
output list<SCode.Statement> outStatements;
output Argument outArg;


replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArgument;
Expand All @@ -2445,8 +2414,6 @@ public function traverseStatementExps
output SCode.Statement outStatement;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArgument;
Expand Down Expand Up @@ -2545,8 +2512,6 @@ protected function traverseBranchExps
output tuple<Absyn.Exp, list<SCode.Statement>> outBranch;
output Argument outArg;

replaceable type Argument subtypeof Any;

partial function TraverseFunc
input Absyn.Exp inExp;
input Argument inArgument;
Expand Down

0 comments on commit 3b81a3a

Please sign in to comment.