Skip to content

Commit

Permalink
Allow accessing properties in current context using paths. This is to
Browse files Browse the repository at this point in the history
avoid name collisions with registered helper functions.

Issue #458
  • Loading branch information
jpfiset committed Mar 4, 2013
1 parent 948231a commit bf30bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlebars.l
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<mu>"{{" { return 'OPEN'; }

<mu>"=" { return 'EQUALS'; }
<mu>"."/[} ] { return 'ID'; }
<mu>"."/[}/ ] { return 'ID'; }
<mu>".." { return 'ID'; }
<mu>[\/.] { return 'SEP'; }
<mu>\s+ { /*ignore whitespace*/ }
Expand Down

0 comments on commit bf30bf9

Please sign in to comment.