diff options
| author | Misko Hevery | 2010-04-03 17:04:36 -0700 |
|---|---|---|
| committer | Misko Hevery | 2010-04-03 17:04:36 -0700 |
| commit | a80a61839a66d244c8bb14bbe2975746e02516c8 (patch) | |
| tree | 5a7b4d9d3e2a7a15ebf55e068782fbf2aa4ac6bf /src/Parser.js | |
| parent | 35ca4fcb9c49e505e28669e951e01ddedb01d7db (diff) | |
| download | angular.js-a80a61839a66d244c8bb14bbe2975746e02516c8.tar.bz2 | |
injection is now working
Diffstat (limited to 'src/Parser.js')
| -rw-r--r-- | src/Parser.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Parser.js b/src/Parser.js index ec58295a..8e42f18a 100644 --- a/src/Parser.js +++ b/src/Parser.js @@ -4,7 +4,7 @@ function Lexer(text, parsStrings){ this.dateParseLength = parsStrings ? 20 : -1; this.tokens = []; this.index = 0; -}; +} Lexer.OPERATORS = { 'null':function(self){return null;}, @@ -244,7 +244,7 @@ function Parser(text, parseStrings){ this.text = text; this.tokens = new Lexer(text, parseStrings).parse(); this.index = 0; -}; +} Parser.ZERO = function(){ return 0; |
