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

View File

@ -17,6 +17,13 @@ describe('parser/javascript/charset_range.js', function() {
}));
});
it('throws an exception when the range is out of order', function() {
var parser = new javascript.Parser('z-a');
expect(() => {
parser.__consume__charset_range();
}).toThrow('Range out of order in character class: z-a');
});
describe('#_render', function() {
beforeEach(function() {

View File

@ -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}`;
}
}
};