Adding check that charset range is in correct order

This commit is contained in:
Jeff Avallone
2014-12-22 15:18:49 -05:00
parent 9b8eef9c02
commit d882ee8e08
2 changed files with 11 additions and 0 deletions
@@ -26,5 +26,9 @@ export default {
setup() {
this.first = this.properties.first;
this.last = this.properties.last;
if (this.first.ordinal > this.last.ordinal) {
throw `Range out of order in character class: ${this.textValue}`;
}
}
};