diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:37:29 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:43:23 -0700 |
| commit | 8ff18acc8221a0157d94cd714b448b6a596fad40 (patch) | |
| tree | eb5182bca0d5687c5fb0c2e2b70897787a01515c /src/libsyntax/ast.rs | |
| parent | 3f92cf26594d1ddc9a4ff318b48c3b61ac233813 (diff) | |
| download | rust-8ff18acc8221a0157d94cd714b448b6a596fad40.tar.gz rust-8ff18acc8221a0157d94cd714b448b6a596fad40.zip | |
libsyntax: "import" -> "use"
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 693fc4df5d0..083f67947e9 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1,7 +1,7 @@ // The Rust abstract syntax tree. -import codemap::{span, filename}; -import std::serialization::{serializer, +use codemap::{span, filename}; +use std::serialization::{serializer, deserializer, serialize_Option, deserialize_Option, @@ -17,7 +17,7 @@ import std::serialization::{serializer, deserialize_str, serialize_bool, deserialize_bool}; -import parse::token; +use parse::token; /* Note #1972 -- spans are serialized but not deserialized */ fn serialize_span<S>(_s: S, _v: span) { |
