libsyntax: "import" -> "use"
This commit is contained in:
parent
3f92cf2659
commit
8ff18acc82
44 changed files with 203 additions and 208 deletions
|
|
@ -1,10 +1,10 @@
|
|||
import std::map;
|
||||
import std::map::hashmap;
|
||||
import ast::*;
|
||||
import print::pprust;
|
||||
import ast_util::{path_to_ident, stmt_id};
|
||||
import diagnostic::span_handler;
|
||||
import parse::token::ident_interner;
|
||||
use std::map;
|
||||
use std::map::hashmap;
|
||||
use ast::*;
|
||||
use print::pprust;
|
||||
use ast_util::{path_to_ident, stmt_id};
|
||||
use diagnostic::span_handler;
|
||||
use parse::token::ident_interner;
|
||||
|
||||
enum path_elt {
|
||||
path_mod(ident),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue