summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
diff options
context:
space:
mode:
authorMichael Sullivan <sully@msully.net>2012-06-29 16:26:56 -0700
committerMichael Sullivan <sully@msully.net>2012-06-29 17:41:45 -0700
commit98e161f00e8850b0f5c6a3a9f1b22b222c2355b7 (patch)
tree4e026fed97dda63a5394b86235a27eeb1015b094 /src/libsyntax/parse/token.rs
parente6baf44f1982d1a5e49cc4a0b5eaeb857418e35e (diff)
downloadrust-98e161f00e8850b0f5c6a3a9f1b22b222c2355b7.tar.gz
rust-98e161f00e8850b0f5c6a3a9f1b22b222c2355b7.zip
Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.
Diffstat (limited to 'src/libsyntax/parse/token.rs')
-rw-r--r--src/libsyntax/parse/token.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index 8ab37e95d21..706ebb8e4ca 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -248,7 +248,7 @@ fn keyword_table() -> hashmap<str, ()> {
 #[doc = "Keywords that may be used as identifiers"]
 fn contextual_keyword_table() -> hashmap<str, ()> {
     let words = str_hash();
-    let keys = [
+    let keys = ~[
         "as",
         "else",
         "move",
@@ -260,7 +260,7 @@ fn contextual_keyword_table() -> hashmap<str, ()> {
         "with",
         /* temp */
         "sep", "many", "at_least_one", "parse"
-    ]/~;
+    ];
     for keys.each {|word|
         words.insert(word, ());
     }
@@ -282,7 +282,7 @@ Reasons:
 "]
 fn restricted_keyword_table() -> hashmap<str, ()> {
     let words = str_hash();
-    let keys = [
+    let keys = ~[
         "alt",
         "assert",
         "break",
@@ -298,7 +298,7 @@ fn restricted_keyword_table() -> hashmap<str, ()> {
         "true", "trait", "type",
         "unchecked", "unsafe",
         "while"
-    ]/~;
+    ];
     for keys.each {|word|
         words.insert(word, ());
     }