about summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2015-11-18 10:32:43 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2015-11-18 17:16:32 +1100
commit41f7f0c341aad4c3f197bf8b8f1e3c55da493daf (patch)
tree132a2ef3bb271d8642781d85b57e410a76ca6bb8 /src/libsyntax/parse/lexer
parentb2f539375a24511f8dff5e67e549e0f08e5b961d (diff)
downloadrust-41f7f0c341aad4c3f197bf8b8f1e3c55da493daf.tar.gz
rust-41f7f0c341aad4c3f197bf8b8f1e3c55da493daf.zip
Add some unicode aliases for ".
Diffstat (limited to 'src/libsyntax/parse/lexer')
-rw-r--r--src/libsyntax/parse/lexer/unicode_chars.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libsyntax/parse/lexer/unicode_chars.rs b/src/libsyntax/parse/lexer/unicode_chars.rs
index dbec1a8851c..a2f37426210 100644
--- a/src/libsyntax/parse/lexer/unicode_chars.rs
+++ b/src/libsyntax/parse/lexer/unicode_chars.rs
@@ -91,6 +91,22 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
     ('י', "Hebrew Letter Yod", '\''),
     ('ߴ', "Nko High Tone Apostrophe", '\''),
     ('ߵ', "Nko Low Tone Apostrophe", '\''),
+    ('"', "Fullwidth Quotation Mark", '"'),
+    ('“', "Left Double Quotation Mark", '"'),
+    ('”', "Right Double Quotation Mark", '"'),
+    ('‟', "Double High-Reversed-9 Quotation Mark", '"'),
+    ('″', "Double Prime", '"'),
+    ('‶', "Reversed Double Prime", '"'),
+    ('〃', "Ditto Mark", '"'),
+    ('״', "Hebrew Punctuation Gershayim", '"'),
+    ('˝', "Double Acute Accent", '"'),
+    ('ʺ', "Modifier Letter Double Prime", '"'),
+    ('˶', "Modifier Letter Middle Double Acute Accent", '"'),
+    ('˵', "Modifier Letter Middle Double Grave Accent", '"'),
+    ('ˮ', "Modifier Letter Double Apostrophe", '"'),
+    ('ײ', "Hebrew Ligature Yiddish Double Yod", '"'),
+    ('❞', "Heavy Double Comma Quotation Mark Ornament", '"'),
+    ('❝', "Heavy Double Turned Comma Quotation Mark Ornament", '"'),
     ('[', "Fullwidth Left Square Bracket", '('),
     ('❨', "Medium Left Parenthesis Ornament", '('),
     ('❲', "Light Left Tortoise Shell Bracket Ornament", '('),
@@ -149,6 +165,7 @@ const ASCII_ARRAY: &'static [(char, &'static str)] = &[
     ('?', "Question Mark"),
     ('.', "Period"),
     ('\'', "Single Quote"),
+    ('"', "Quotation Mark"),
     ('(', "Left Parenthesis"),
     (')', "Right Parenthesis"),
     ('{', "Left Curly Brace"),