You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2019. It is now read-only.
- Implemented basic handling of slices in Expression.applySubscript.
- Implemented missing cases for Real ranges in RangeIterator.
- Added the concept of invalid ranges to RangeIterator to allow it to
fail gracefully on non-expandable ranges.
- Improved detection of too small step size in Real ranges.
Belonging to [master]:
- #2308
- OpenModelica/OpenModelica-testsuite#892
Util.gettext("The standard says that initial() may only be used as a when condition (when initial() or when {..., initial(), ...}), but got condition %s."));
719
719
public constant MessageRANGE_TYPE_MISMATCH=MESSAGE(295, TRANSLATION(), ERROR(),
720
720
Util.gettext("Type mismatch in range: '%s' of type\n %s\nis not type compatible with '%s' of type\n %s"));
721
-
public constant MessageRANGE_ZERO_STEP=MESSAGE(296, TRANSLATION(), ERROR(),
722
-
Util.gettext("Range may not have a step size of 0."));
721
+
public constant MessageRANGE_TOO_SMALL_STEP=MESSAGE(296, TRANSLATION(), ERROR(),
722
+
Util.gettext("Step size %s in range is too small."));
723
723
public constant MessageRANGE_INVALID_STEP=MESSAGE(297, TRANSLATION(),
724
724
ERROR(),
725
725
Util.gettext("Range of type %s may not specify a step size."));
0 commit comments