Convert all kind bounds to camel case. Remove send, owned keywords.

This commit is contained in:
Brian Anderson
2012-09-07 14:52:28 -07:00
parent 07fe5611ad
commit 3bd1f32cd9
167 changed files with 613 additions and 622 deletions

View File

@@ -386,7 +386,7 @@ fn contextual_keyword_table() -> hashmap<~str, ()> {
~"else",
~"move",
~"priv", ~"pub",
~"self", ~"send", ~"static",
~"self", ~"static",
~"use"
];
for keys.each |word| {
@@ -421,7 +421,6 @@ fn restricted_keyword_table() -> hashmap<~str, ()> {
~"if", ~"impl", ~"import",
~"let", ~"log", ~"loop",
~"match", ~"mod", ~"move", ~"mut",
~"owned",
~"pure",
~"ref", ~"return",
~"struct",