use of org.apache.sysml.parser.MultiAssignmentStatement in project incubator-systemml by apache.
the class CommonSyntacticValidator method setMultiAssignmentStatement.
protected void setMultiAssignmentStatement(ArrayList<DataIdentifier> target, Expression expression, ParserRuleContext ctx, StatementInfo info) {
info.stmt = new MultiAssignmentStatement(target, expression);
info.stmt.setCtxValuesAndFilename(ctx, currentFile);
}
use of org.apache.sysml.parser.MultiAssignmentStatement in project systemml by apache.
the class CommonSyntacticValidator method setMultiAssignmentStatement.
protected void setMultiAssignmentStatement(ArrayList<DataIdentifier> target, Expression expression, ParserRuleContext ctx, StatementInfo info) {
info.stmt = new MultiAssignmentStatement(target, expression);
info.stmt.setCtxValuesAndFilename(ctx, currentFile);
}
Aggregations