Separate lexer

This commit is contained in:
Tim Schaub
2013-06-05 14:57:20 -06:00
parent 84a9fb40ef
commit a5343161bf
3 changed files with 440 additions and 150 deletions

View File

@@ -0,0 +1,14 @@
goog.provide('ol.test.expression.Lexer');
describe('ol.expression.Lexer', function() {
describe('constructor', function() {
it('creates a new lexer', function() {
var lexer = new ol.expression.Lexer('foo');
expect(lexer).to.be.a(ol.expression.Lexer);
});
});
});
goog.require('ol.expression.Lexer');