-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modeler 4.4: expression parsing [ANT-2313] #2471
base: develop
Are you sure you want to change the base?
Conversation
add antlr4 here |
src/solver/modelConverter/include/antares/solver/modelConverter/convertorVisitor.h
Outdated
Show resolved
Hide resolved
std::any ConvertorVisitor::visitTimeIndex([[maybe_unused]] ExprParser::TimeIndexContext* context) | ||
{ | ||
return std::any(); | ||
} | ||
|
||
std::any ConvertorVisitor::visitTimeShift([[maybe_unused]] ExprParser::TimeShiftContext* context) | ||
{ | ||
return std::any(); | ||
} | ||
|
||
std::any ConvertorVisitor::visitFunction([[maybe_unused]] ExprParser::FunctionContext* context) | ||
{ | ||
return std::any(); | ||
} | ||
|
||
std::any ConvertorVisitor::visitTimeSum([[maybe_unused]] ExprParser::TimeSumContext* context) | ||
{ | ||
return std::any(); | ||
} | ||
|
||
std::any ConvertorVisitor::visitAllTimeSum([[maybe_unused]] ExprParser::AllTimeSumContext* context) | ||
{ | ||
return std::any(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add asserts to this class to check that expressions are converted to Node*
Quality Gate failedFailed conditions See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
No description provided.