diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-22 13:11:03 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-22 22:24:34 -0700 |
| commit | eba3367404e9ca6abf84199b5c2dbe51ce6cdbde (patch) | |
| tree | 51f5c04a529cdfc03cd4fded6f66c699a8162940 /src/libsyntax/parse/token.rs | |
| parent | fa70709e07983fb62d1fddadac0987c79e836d23 (diff) | |
| download | rust-eba3367404e9ca6abf84199b5c2dbe51ce6cdbde.tar.gz rust-eba3367404e9ca6abf84199b5c2dbe51ce6cdbde.zip | |
libsyntax: Introduce the new `assert!` macro; make `assert` no longer a keyword
Diffstat (limited to 'src/libsyntax/parse/token.rs')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index f5542fa81a6..8b78087e16f 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -488,7 +488,7 @@ pub fn temporary_keyword_table() -> HashMap<~str, ()> { pub fn strict_keyword_table() -> HashMap<~str, ()> { let words = HashMap(); let keys = ~[ - ~"as", ~"assert", + ~"as", ~"break", ~"const", ~"copy", ~"do", ~"drop", |
