We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22b6ea7 commit ca83ab4Copy full SHA for ca83ab4
1 file changed
src/js_identifiers.rs
@@ -90,7 +90,10 @@ mod tests {
90
assert_eq!(get_javascript_token("f _hi"), Some("f"));
91
assert_eq!(get_javascript_token("foo.bar"), Some("foo"));
92
assert_eq!(get_javascript_token("[foo,bar]"), None);
93
- assert_eq!(get_javascript_token("결제사_연결():De"), Some("결제사_연결"));
+ assert_eq!(
94
+ get_javascript_token("결제사_연결():De"),
95
+ Some("결제사_연결")
96
+ );
97
assert_eq!(get_javascript_token("变量名123"), Some("变量名123"));
98
assert_eq!(get_javascript_token("へんすう_test"), Some("へんすう_test"));
99
}
0 commit comments