Skip to content
Snippets Groups Projects
Commit bbb9a70a authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Macroprocessor: error out when length() operator called on a string or an int

Closes DynareTeam/Dynare#1547

(manually cherry-picked from 937659747ab504d6220d89fd492752c31ad1d0c1)
parent 342c5a44
Branches
Tags
No related merge requests found
......@@ -139,7 +139,7 @@ expr : INTEGER
}
delete $1;
}
| LENGTH LPAREN array_expr RPAREN
| LENGTH LPAREN expr RPAREN
{ TYPERR_CATCH($$ = $3->length(), @$); }
| LPAREN expr RPAREN
{ $$ = $2; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment