-
-
Notifications
You must be signed in to change notification settings - Fork 36
Add tests for changes due to #885 (name/literal equality) #904
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
dec91ac
1006201
48a6205
2f893d9
80b73b7
6bcd592
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -697,6 +697,33 @@ | |
{ | ||
"src": "{{trailing whitespace}} \n", | ||
"exp": "trailing whitespace" | ||
}, | ||
{ | ||
"description": "NFC: literals are not normalized", | ||
catamorphism marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"src": "\u1E0A\u0323", | ||
"exp": "\u1E0A\u0323" | ||
}, | ||
{ | ||
"description": "NFC: variables are compared to each other as-if normalized; decl is non-normalized, use is", | ||
"src": ".local $\u0044\u0323\u0307 = {foo} {{{$\u1E0c\u0307}}}", | ||
"exp": "foo" | ||
}, | ||
{ | ||
"description": "NFC: variables are compared to each other as-if normalized; decl is normalized, use isn't", | ||
"src": ".local $\u1E0c\u0307 = {foo} {{{$\u0044\u0323\u0307}}}", | ||
"exp": "foo" | ||
}, | ||
{ | ||
"description": "NFC: variables are compared to each other as-if normalized; decl is normalized, use isn't", | ||
"src": ".input {$\u1E0c\u0307} {{{$\u0044\u0323\u0307}}}", | ||
"params": [{"name": "\u1E0c\u0307", "value": "foo"}], | ||
"exp": "foo" | ||
}, | ||
{ | ||
"description": "NFC: variables are compared to each other as-if normalized; decl is non-normalized, use is", | ||
"src": ".input {$\u0044\u0323\u0307} {{{$\u1E0c\u0307}}}", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You're missing the reordering case ( You might include a special case mapping. See Charmod example, featuring There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added these two tests in 80b73b7 |
||
"params": [{"name": "\u0044\u0323\u0307", "value": "foo"}], | ||
"exp": "foo" | ||
} | ||
] | ||
} |
Uh oh!
There was an error while loading. Please reload this page.