njuptxiaot / json-template

Automatically exported from code.google.com/p/json-template
0 stars 0 forks source link

A predicate containing the text 'or' results in a template parsing error #59

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a template with a predicate named 'before?'
2. Expand the template with the additional option more_predicates
3.

What is the expected output? What do you see instead?

Expected the value of the but a Template Syntax Error was thrown with the 
following message 'Got too many {end} statements'.

What version of the product are you using? On what operating system?

JS version, Windows XP Professional, Internet Explorer 8

Please provide any additional information below.

Fix seems to be to change the definition of the regular expression to

var _OR_RE = /^or(?:\s+(.+))?/;

I suspect the issue also impacts other regular expressions but have not tested

Original issue reported on code.google.com by trevor.r...@gmail.com on 27 Jan 2011 at 3:29

Attachments: