You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: add a (failing) test using identifiers starting with numbers
These test cases capture the issue called out in sunng87#450.
The handling of identifiers which start with numbers diverges from the
official JavaScript implementation of Handlebars. It's especially bad
for cases like `{{eq 1a}}`, which validly parses as `{{eq 1 a}}`!
let r2 = r.render("r2",&json!({"1a":2,"a":1})).unwrap();
1133
+
assert_eq!(r2,"false");
1134
+
1135
+
assert!(r
1136
+
.register_template_string("r3","0: {{0}} {{#if (eq 0 true)}}resolved from context{{/if}}\n1a: {{1a}} {{#if (eq 1a true)}}resolved from context{{/if}}\n2_2: {{2_2}} {{#if (eq 2_2 true)}}resolved from context{{/if}}")// YUP it is just eq that barfs! is if handled specially? maybe this test should go nearer to specific helpers that fail?
0 commit comments