Skip to content

Commit 9259120

Browse files
committed
---
yaml --- r: 277625 b: refs/heads/try c: 47d5c90 h: refs/heads/master i: 277623: 99c2c0e
1 parent 4bbd5bd commit 9259120

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 6dbb0e86aec11050480beb76eade6fb805010ba7
33
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4-
refs/heads/try: 5f70e8f6cdf7392f70db1ee1a1e0668d056ab527
4+
refs/heads/try: 47d5c90fbe7d0ccc30a1ab415355755ff104bc9a
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/libsyntax/parse/lexer/unicode_chars.rs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,18 +132,18 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
132132
('ײ', "Hebrew Ligature Yiddish Double Yod", '"'),
133133
('❞', "Heavy Double Comma Quotation Mark Ornament", '"'),
134134
('❝', "Heavy Double Turned Comma Quotation Mark Ornament", '"'),
135-
('[', "Fullwidth Left Square Bracket", '('),
136135
('❨', "Medium Left Parenthesis Ornament", '('),
137-
('❲', "Light Left Tortoise Shell Bracket Ornament", '('),
138-
('〔', "Left Tortoise Shell Bracket", '('),
139136
('﴾', "Ornate Left Parenthesis", '('),
140137
('(', "Fullwidth Left Parenthesis", '('),
141-
(']', "Fullwidth Right Square Bracket", ')'),
142138
('❩', "Medium Right Parenthesis Ornament", ')'),
143-
('❳', "Light Right Tortoise Shell Bracket Ornament", ')'),
144-
('〕', "Right Tortoise Shell Bracket", ')'),
145139
('﴿', "Ornate Right Parenthesis", ')'),
146140
(')', "Fullwidth Right Parenthesis", ')'),
141+
('[', "Fullwidth Left Square Bracket", '['),
142+
('❲', "Light Left Tortoise Shell Bracket Ornament", '['),
143+
('〔', "Left Tortoise Shell Bracket", '['),
144+
(']', "Fullwidth Right Square Bracket", ']'),
145+
('❳', "Light Right Tortoise Shell Bracket Ornament", ']'),
146+
('〕', "Right Tortoise Shell Bracket", ']'),
147147
('❴', "Medium Left Curly Bracket Ornament", '{'),
148148
('❵', "Medium Right Curly Bracket Ornament", '}'),
149149
('⁎', "Low Asterisk", '*'),
@@ -202,6 +202,8 @@ const ASCII_ARRAY: &'static [(char, &'static str)] = &[
202202
('"', "Quotation Mark"),
203203
('(', "Left Parenthesis"),
204204
(')', "Right Parenthesis"),
205+
('[', "Left Square Bracket"),
206+
(']', "Right Square Bracket"),
205207
('{', "Left Curly Brace"),
206208
('}', "Right Curly Brace"),
207209
('*', "Asterisk"),

0 commit comments

Comments
 (0)