Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Jan 18, 2018
1 parent a85b09e commit 80c55b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/parser/samples/unusual-identifier/input.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{#each things as 𐊧}}
<p>𐊧</p>
<p>{{𐊧}}</p>
{{/each}}
19 changes: 12 additions & 7 deletions test/parser/samples/unusual-identifier/output.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"hash": 2991613308,
"hash": 795130236,
"html": {
"start": 0,
"end": 43,
"end": 47,
"type": "Fragment",
"children": [
{
"start": 0,
"end": 43,
"end": 47,
"type": "EachBlock",
"expression": {
"type": "Identifier",
Expand All @@ -18,16 +18,21 @@
"children": [
{
"start": 24,
"end": 33,
"end": 37,
"type": "Element",
"name": "p",
"attributes": [],
"children": [
{
"start": 27,
"end": 29,
"type": "Text",
"data": "𐊧"
"end": 33,
"type": "MustacheTag",
"expression": {
"type": "Identifier",
"start": 29,
"end": 31,
"name": "𐊧"
}
}
]
}
Expand Down

0 comments on commit 80c55b1

Please sign in to comment.