2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
use abi::AbiSet;
|
|
|
|
use ast::ident;
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
2013-05-17 08:51:25 -05:00
|
|
|
use ast_util;
|
2012-12-23 16:41:37 -06:00
|
|
|
use codemap;
|
2013-05-17 08:51:25 -05:00
|
|
|
use codemap::{span, respan, dummy_sp, spanned};
|
2013-05-08 14:26:34 -05:00
|
|
|
use fold;
|
2013-05-17 06:27:17 -05:00
|
|
|
use ext::base::ExtCtxt;
|
2013-05-17 08:51:25 -05:00
|
|
|
use ext::quote::rt::*;
|
|
|
|
use opt_vec;
|
2013-02-14 23:50:03 -06:00
|
|
|
use opt_vec::OptVec;
|
|
|
|
|
2013-02-21 02:16:31 -06:00
|
|
|
pub struct Field {
|
|
|
|
ident: ast::ident,
|
|
|
|
ex: @ast::expr
|
|
|
|
}
|
|
|
|
|
2013-05-15 17:55:57 -05:00
|
|
|
// Transitional reexports so qquote can find the paths it is looking for
|
|
|
|
mod syntax {
|
|
|
|
pub use ext;
|
|
|
|
pub use parse;
|
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
pub trait AstBuilder {
|
|
|
|
// paths
|
2013-05-15 17:55:57 -05:00
|
|
|
fn path(&self, span: span, strs: ~[ast::ident]) -> @ast::Path;
|
|
|
|
fn path_global(&self, span: span, strs: ~[ast::ident]) -> @ast::Path;
|
|
|
|
fn path_tps(&self, span: span, strs: ~[ast::ident], tps: ~[@ast::Ty])
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::Path;
|
2013-05-15 17:55:57 -05:00
|
|
|
fn path_tps_global(&self,
|
|
|
|
span: span,
|
|
|
|
strs: ~[ast::ident],
|
|
|
|
tps: ~[@ast::Ty])
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::Path;
|
2013-05-17 08:51:25 -05:00
|
|
|
|
|
|
|
// types
|
|
|
|
fn ty_path(&self, @ast::Path) -> @ast::Ty;
|
|
|
|
|
|
|
|
fn ty_param(&self, id: ast::ident, bounds: @OptVec<ast::TyParamBound>)
|
|
|
|
-> ast::TyParam;
|
|
|
|
fn ty_vars(&self, ty_params: &OptVec<ast::TyParam>) -> ~[@ast::Ty];
|
|
|
|
fn ty_vars_global(&self, ty_params: &OptVec<ast::TyParam>) -> ~[@ast::Ty];
|
|
|
|
fn ty_field_imm(&self, name: ident, ty: @ast::Ty) -> ast::ty_field;
|
|
|
|
fn ty_option(&self, ty: @ast::Ty) -> @ast::Ty;
|
|
|
|
fn ty_infer(&self) -> @ast::Ty;
|
|
|
|
fn ty_nil_ast_builder(&self) -> @ast::Ty;
|
|
|
|
fn strip_bounds(&self, bounds: &Generics) -> Generics;
|
|
|
|
|
|
|
|
|
|
|
|
// statements
|
|
|
|
fn stmt_expr(&self, expr: @ast::expr) -> @ast::stmt;
|
|
|
|
fn stmt_let(&self, ident: ident, e: @ast::expr) -> @ast::stmt;
|
|
|
|
|
|
|
|
// literals
|
2013-05-15 17:55:57 -05:00
|
|
|
fn lit_str(&self, span: span, s: @~str) -> @ast::expr;
|
|
|
|
fn lit_uint(&self, span: span, i: uint) -> @ast::expr;
|
2013-05-17 08:51:25 -05:00
|
|
|
|
|
|
|
// blocks
|
|
|
|
fn blk(&self, span: span, stmts: ~[@ast::stmt], expr: Option<@ast::expr>) -> ast::blk;
|
|
|
|
fn blk_expr(&self, expr: @ast::expr) -> ast::blk;
|
|
|
|
|
|
|
|
// expressions
|
|
|
|
fn expr(&self, span: span, node: ast::expr_) -> @ast::expr;
|
2013-05-15 17:55:57 -05:00
|
|
|
fn expr_path(&self, span: span, strs: ~[ast::ident]) -> @ast::expr;
|
|
|
|
fn expr_path_global(&self, span: span, strs: ~[ast::ident]) -> @ast::expr;
|
|
|
|
fn expr_var(&self, span: span, var: &str) -> @ast::expr;
|
|
|
|
fn expr_self(&self, span: span) -> @ast::expr;
|
|
|
|
fn expr_field(&self, span: span, expr: @ast::expr, ident: ast::ident)
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr;
|
2013-05-15 17:55:57 -05:00
|
|
|
fn expr_call(&self, span: span, expr: @ast::expr, args: ~[@ast::expr])
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr;
|
2013-05-15 17:55:57 -05:00
|
|
|
fn expr_method_call(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr,
|
|
|
|
ident: ast::ident,
|
|
|
|
args: ~[@ast::expr])
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr;
|
2013-05-17 08:51:25 -05:00
|
|
|
fn expr_blk(&self, b: ast::blk) -> @ast::expr;
|
|
|
|
fn field_imm(&self, name: ident, e: @ast::expr) -> ast::field;
|
|
|
|
fn expr_struct(&self,
|
|
|
|
path: @ast::Path,
|
|
|
|
fields: ~[ast::field]) -> @ast::expr;
|
|
|
|
fn lambda0(&self, blk: ast::blk) -> @ast::expr;
|
|
|
|
fn lambda1(&self, blk: ast::blk, ident: ast::ident) -> @ast::expr;
|
2013-05-15 17:55:57 -05:00
|
|
|
fn lambda_expr_0(&self, expr: @ast::expr) -> @ast::expr;
|
|
|
|
fn lambda_expr_1(&self, expr: @ast::expr, ident: ast::ident)
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr;
|
2013-05-15 17:55:57 -05:00
|
|
|
fn lambda_stmts_0(&self, span: span, stmts: ~[@ast::stmt]) -> @ast::expr;
|
|
|
|
fn lambda_stmts_1(&self,
|
|
|
|
span: span,
|
|
|
|
stmts: ~[@ast::stmt],
|
|
|
|
ident: ast::ident)
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr;
|
2013-05-15 17:55:57 -05:00
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
// items
|
|
|
|
fn item(&self, name: ident, span: span, node: ast::item_) -> @ast::item;
|
2013-05-15 17:55:57 -05:00
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn arg(&self, name: ident, ty: @ast::Ty) -> ast::arg;
|
|
|
|
fn fn_decl(&self, inputs: ~[ast::arg], output: @ast::Ty) -> ast::fn_decl;
|
2013-05-15 17:55:57 -05:00
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn item_fn_poly(&self,
|
|
|
|
ame: ident,
|
|
|
|
inputs: ~[ast::arg],
|
|
|
|
output: @ast::Ty,
|
|
|
|
generics: Generics,
|
|
|
|
body: ast::blk) -> @ast::item;
|
|
|
|
fn item_fn(&self,
|
|
|
|
name: ident,
|
|
|
|
inputs: ~[ast::arg],
|
|
|
|
output: @ast::Ty,
|
|
|
|
body: ast::blk) -> @ast::item;
|
|
|
|
|
|
|
|
fn variant(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
tys: ~[@ast::Ty]) -> ast::variant;
|
|
|
|
fn item_enum_poly(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
enum_definition: ast::enum_def,
|
|
|
|
generics: Generics) -> @ast::item;
|
|
|
|
fn item_enum(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
enum_definition: ast::enum_def) -> @ast::item;
|
|
|
|
|
|
|
|
fn item_struct_poly(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
struct_def: ast::struct_def,
|
|
|
|
generics: Generics) -> @ast::item;
|
|
|
|
fn item_struct(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
struct_def: ast::struct_def) -> @ast::item;
|
|
|
|
|
|
|
|
fn item_mod(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
items: ~[@ast::item]) -> @ast::item;
|
|
|
|
|
|
|
|
fn item_ty_poly(&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
ty: @ast::Ty,
|
|
|
|
generics: Generics) -> @ast::item;
|
|
|
|
fn item_ty(&self, name: ident, span: span, ty: @ast::Ty) -> @ast::item;
|
|
|
|
|
2013-05-17 09:19:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn mk_expr(&self,
|
|
|
|
sp: codemap::span,
|
|
|
|
expr: ast::expr_)
|
|
|
|
-> @ast::expr;
|
|
|
|
|
|
|
|
fn mk_lit(&self, sp: span, lit: ast::lit_) -> @ast::expr;
|
|
|
|
fn mk_int(&self, sp: span, i: int) -> @ast::expr;
|
|
|
|
fn mk_uint(&self, sp: span, u: uint) -> @ast::expr;
|
|
|
|
fn mk_u8(&self, sp: span, u: u8) -> @ast::expr;
|
|
|
|
fn mk_binary(&self, sp: span, op: ast::binop,
|
|
|
|
lhs: @ast::expr, rhs: @ast::expr) -> @ast::expr;
|
|
|
|
|
|
|
|
fn mk_deref(&self, sp: span, e: @ast::expr) -> @ast::expr;
|
|
|
|
fn mk_unary(&self, sp: span, op: ast::unop, e: @ast::expr)
|
|
|
|
-> @ast::expr;
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path(&self, sp: span, idents: ~[ast::ident]) -> @ast::Path;
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path_(&self, sp: span,
|
|
|
|
idents: ~[ast::ident],
|
|
|
|
rp: Option<@ast::Lifetime>,
|
|
|
|
types: ~[@ast::Ty])
|
|
|
|
-> @ast::Path;
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path_global(&self, sp: span,idents: ~[ast::ident]) -> @ast::Path;
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path_global_(&self, sp: span,
|
|
|
|
idents: ~[ast::ident],
|
|
|
|
rp: Option<@ast::Lifetime>,
|
|
|
|
types: ~[@ast::Ty]) -> @ast::Path;
|
|
|
|
fn mk_path_raw(&self, sp: span, path: @ast::Path)-> @ast::expr;
|
|
|
|
fn mk_path(&self, sp: span, idents: ~[ast::ident])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_path_global(&self, sp: span, idents: ~[ast::ident])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_access_(&self, sp: span, p: @ast::expr, m: ast::ident)
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_access(&self, sp: span, p: ~[ast::ident], m: ast::ident)
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_addr_of(&self, sp: span, e: @ast::expr) -> @ast::expr;
|
|
|
|
fn mk_mut_addr_of(&self, sp: span, e: @ast::expr) -> @ast::expr;
|
|
|
|
fn mk_method_call(&self,
|
|
|
|
sp: span,
|
|
|
|
rcvr_expr: @ast::expr,
|
|
|
|
method_ident: ast::ident,
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr;
|
|
|
|
fn mk_call_(&self, sp: span, fn_expr: @ast::expr,
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr;
|
|
|
|
fn mk_call(&self, sp: span, fn_path: ~[ast::ident],
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr;
|
|
|
|
fn mk_call_global(&self, sp: span, fn_path: ~[ast::ident],
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr;
|
|
|
|
// e = expr, t = type
|
|
|
|
fn mk_base_vec_e(&self, sp: span, exprs: ~[@ast::expr])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_vstore_e(&self, sp: span, expr: @ast::expr,
|
|
|
|
vst: ast::expr_vstore) ->
|
|
|
|
@ast::expr;
|
|
|
|
fn mk_uniq_vec_e(&self, sp: span, exprs: ~[@ast::expr])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_slice_vec_e(&self, sp: span, exprs: ~[@ast::expr])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_base_str(&self, sp: span, s: ~str) -> @ast::expr;
|
|
|
|
fn mk_uniq_str(&self, sp: span, s: ~str) -> @ast::expr;
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_field(&self, sp: span, f: &Field) -> ast::field;
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_fields(&self, sp: span, fields: ~[Field]) -> ~[ast::field];
|
|
|
|
fn mk_struct_e(&self,
|
|
|
|
sp: span,
|
|
|
|
ctor_path: ~[ast::ident],
|
|
|
|
fields: ~[Field])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_global_struct_e(&self,
|
|
|
|
sp: span,
|
|
|
|
ctor_path: ~[ast::ident],
|
|
|
|
fields: ~[Field])
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_glob_use(&self,
|
|
|
|
sp: span,
|
|
|
|
vis: ast::visibility,
|
|
|
|
path: ~[ast::ident]) -> @ast::view_item;
|
|
|
|
fn mk_local(&self, sp: span, mutbl: bool,
|
|
|
|
ident: ast::ident, ex: @ast::expr) -> @ast::stmt;
|
|
|
|
fn mk_block(&self, span: span,
|
|
|
|
view_items: ~[@ast::view_item],
|
|
|
|
stmts: ~[@ast::stmt],
|
|
|
|
expr: Option<@ast::expr>) -> @ast::expr;
|
|
|
|
fn mk_block_(&self,
|
|
|
|
span: span,
|
|
|
|
stmts: ~[@ast::stmt])
|
|
|
|
-> ast::blk;
|
|
|
|
fn mk_simple_block(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> ast::blk;
|
|
|
|
fn mk_lambda_(&self,
|
|
|
|
span: span,
|
|
|
|
fn_decl: ast::fn_decl,
|
|
|
|
blk: ast::blk)
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_lambda(&self,
|
|
|
|
span: span,
|
|
|
|
fn_decl: ast::fn_decl,
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_lambda_stmts(&self,
|
|
|
|
span: span,
|
|
|
|
fn_decl: ast::fn_decl,
|
|
|
|
stmts: ~[@ast::stmt])
|
|
|
|
-> @ast::expr ;
|
|
|
|
fn mk_lambda_no_args(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> @ast::expr;
|
|
|
|
fn mk_copy(&self, sp: span, e: @ast::expr) -> @ast::expr;
|
|
|
|
fn mk_managed(&self, sp: span, e: @ast::expr) -> @ast::expr;
|
|
|
|
fn mk_pat(&self, span: span, pat: ast::pat_) -> @ast::pat;
|
|
|
|
fn mk_pat_wild(&self, span: span) -> @ast::pat;
|
|
|
|
fn mk_pat_lit(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr) -> @ast::pat;
|
|
|
|
fn mk_pat_ident(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident) -> @ast::pat;
|
|
|
|
|
|
|
|
fn mk_pat_ident_with_binding_mode(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident,
|
|
|
|
bm: ast::binding_mode) -> @ast::pat;
|
|
|
|
fn mk_pat_enum(&self,
|
|
|
|
span: span,
|
|
|
|
path: @ast::Path,
|
|
|
|
subpats: ~[@ast::pat])
|
|
|
|
-> @ast::pat;
|
|
|
|
fn mk_pat_struct(&self,
|
|
|
|
span: span,
|
|
|
|
path: @ast::Path,
|
|
|
|
field_pats: ~[ast::field_pat])
|
|
|
|
-> @ast::pat;
|
|
|
|
fn mk_bool(&self, span: span, value: bool) -> @ast::expr;
|
|
|
|
fn mk_stmt(&self, span: span, expr: @ast::expr) -> @ast::stmt;
|
|
|
|
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_ty_mt(&self, ty: @ast::Ty, mutbl: ast::mutability) -> ast::mt;
|
|
|
|
|
|
|
|
fn mk_ty(&self,
|
|
|
|
span: span,
|
|
|
|
ty: ast::ty_) -> @ast::Ty;
|
|
|
|
|
|
|
|
fn mk_ty_path(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::Ty;
|
|
|
|
|
|
|
|
fn mk_ty_path_global(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::Ty;
|
|
|
|
|
|
|
|
fn mk_ty_path_path(&self,
|
|
|
|
span: span,
|
|
|
|
path: @ast::Path)
|
|
|
|
-> @ast::Ty;
|
|
|
|
|
|
|
|
fn mk_ty_rptr(&self,
|
|
|
|
span: span,
|
|
|
|
ty: @ast::Ty,
|
|
|
|
lifetime: Option<@ast::Lifetime>,
|
|
|
|
mutbl: ast::mutability)
|
|
|
|
-> @ast::Ty;
|
|
|
|
fn mk_ty_uniq(&self, span: span, ty: @ast::Ty) -> @ast::Ty;
|
|
|
|
fn mk_ty_box(&self, span: span,
|
|
|
|
ty: @ast::Ty, mutbl: ast::mutability) -> @ast::Ty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn mk_ty_infer(&self, span: span) -> @ast::Ty;
|
|
|
|
fn mk_trait_ref_global(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::trait_ref;
|
|
|
|
fn mk_trait_ref_(&self, path: @ast::Path) -> @ast::trait_ref;
|
|
|
|
fn mk_simple_ty_path(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident)
|
|
|
|
-> @ast::Ty;
|
|
|
|
fn mk_arg(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident,
|
|
|
|
ty: @ast::Ty)
|
|
|
|
-> ast::arg;
|
|
|
|
// XXX unused self
|
|
|
|
fn mk_fn_decl(&self, inputs: ~[ast::arg], output: @ast::Ty) -> ast::fn_decl;
|
|
|
|
fn mk_trait_ty_param_bound_global(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ast::ident])
|
|
|
|
-> ast::TyParamBound;
|
|
|
|
fn mk_trait_ty_param_bound_(&self,
|
|
|
|
path: @ast::Path) -> ast::TyParamBound;
|
|
|
|
fn mk_ty_param(&self,
|
|
|
|
ident: ast::ident,
|
|
|
|
bounds: @OptVec<ast::TyParamBound>)
|
|
|
|
-> ast::TyParam;
|
|
|
|
fn mk_lifetime(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident)
|
|
|
|
-> ast::Lifetime;
|
|
|
|
fn mk_arm(&self,
|
|
|
|
span: span,
|
|
|
|
pats: ~[@ast::pat],
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> ast::arm;
|
|
|
|
fn mk_unreachable(&self, span: span) -> @ast::expr;
|
|
|
|
fn mk_unreachable_arm(&self, span: span) -> ast::arm;
|
|
|
|
|
|
|
|
fn make_self(&self, span: span) -> @ast::expr;
|
2013-05-17 08:51:25 -05:00
|
|
|
}
|
2013-05-15 17:55:57 -05:00
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
impl AstBuilder for @ExtCtxt {
|
2013-05-15 17:55:57 -05:00
|
|
|
fn path(&self, span: span, strs: ~[ast::ident]) -> @ast::Path {
|
|
|
|
@ast::Path {
|
|
|
|
span: span,
|
|
|
|
global: false,
|
|
|
|
idents: strs,
|
|
|
|
rp: None,
|
|
|
|
types: ~[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn path_global(&self, span: span, strs: ~[ast::ident]) -> @ast::Path {
|
|
|
|
@ast::Path {
|
|
|
|
span: span,
|
|
|
|
global: true,
|
|
|
|
idents: strs,
|
|
|
|
rp: None,
|
|
|
|
types: ~[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn path_tps(
|
|
|
|
&self,
|
|
|
|
span: span,
|
|
|
|
strs: ~[ast::ident],
|
|
|
|
tps: ~[@ast::Ty]
|
|
|
|
) -> @ast::Path {
|
|
|
|
@ast::Path {
|
|
|
|
span: span,
|
|
|
|
global: false,
|
|
|
|
idents: strs,
|
|
|
|
rp: None,
|
|
|
|
types: tps
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn path_tps_global(
|
|
|
|
&self,
|
|
|
|
span: span,
|
|
|
|
strs: ~[ast::ident],
|
|
|
|
tps: ~[@ast::Ty]
|
|
|
|
) -> @ast::Path {
|
|
|
|
@ast::Path {
|
|
|
|
span: span,
|
|
|
|
global: true,
|
|
|
|
idents: strs,
|
|
|
|
rp: None,
|
|
|
|
types: tps
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn ty_path(&self, path: @ast::Path) -> @ast::Ty {
|
2013-05-17 09:19:28 -05:00
|
|
|
self.mk_ty(path.span,
|
|
|
|
ast::ty_path(path, self.next_id()))
|
2013-05-17 08:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_option(&self, ty: @ast::Ty) -> @ast::Ty {
|
|
|
|
self.ty_path(
|
|
|
|
self.path_tps_global(dummy_sp(),
|
|
|
|
~[
|
|
|
|
self.ident_of("core"),
|
|
|
|
self.ident_of("option"),
|
|
|
|
self.ident_of("Option")
|
|
|
|
],
|
|
|
|
~[ ty ]))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_field_imm(&self, name: ident, ty: @ast::Ty) -> ast::ty_field {
|
|
|
|
spanned {
|
|
|
|
node: ast::ty_field_ {
|
|
|
|
ident: name,
|
|
|
|
mt: ast::mt { ty: ty, mutbl: ast::m_imm },
|
|
|
|
},
|
|
|
|
span: dummy_sp(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_infer(&self) -> @ast::Ty {
|
2013-05-15 17:55:57 -05:00
|
|
|
@ast::Ty {
|
|
|
|
id: self.next_id(),
|
2013-05-17 08:51:25 -05:00
|
|
|
node: ast::ty_infer,
|
|
|
|
span: dummy_sp(),
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn ty_param(&self, id: ast::ident, bounds: @OptVec<ast::TyParamBound>)
|
|
|
|
-> ast::TyParam
|
|
|
|
{
|
|
|
|
ast::TyParam { ident: id, id: self.next_id(), bounds: bounds }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_nil_ast_builder(&self) -> @ast::Ty {
|
|
|
|
@ast::Ty {
|
2013-05-15 17:55:57 -05:00
|
|
|
id: self.next_id(),
|
2013-05-17 08:51:25 -05:00
|
|
|
node: ast::ty_nil,
|
|
|
|
span: dummy_sp(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_vars(&self, ty_params: &OptVec<ast::TyParam>) -> ~[@ast::Ty] {
|
|
|
|
opt_vec::take_vec(
|
|
|
|
ty_params.map(|p| self.ty_path(
|
2013-05-17 09:19:28 -05:00
|
|
|
self.mk_raw_path(dummy_sp(), ~[p.ident]))))
|
2013-05-17 08:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_vars_global(&self,
|
|
|
|
ty_params: &OptVec<ast::TyParam>) -> ~[@ast::Ty] {
|
|
|
|
opt_vec::take_vec(
|
|
|
|
ty_params.map(|p| self.ty_path(
|
2013-05-17 09:19:28 -05:00
|
|
|
self.mk_raw_path(dummy_sp(), ~[p.ident]))))
|
2013-05-17 08:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn strip_bounds(&self, generics: &Generics) -> Generics {
|
|
|
|
let no_bounds = @opt_vec::Empty;
|
|
|
|
let new_params = do generics.ty_params.map |ty_param| {
|
|
|
|
ast::TyParam { bounds: no_bounds, ..copy *ty_param }
|
|
|
|
};
|
|
|
|
Generics {
|
|
|
|
ty_params: new_params,
|
|
|
|
.. copy *generics
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
|
|
|
|
fn stmt_expr(&self, expr: @ast::expr) -> @ast::stmt {
|
2013-05-15 17:55:57 -05:00
|
|
|
@codemap::spanned { node: ast::stmt_semi(expr, self.next_id()),
|
2013-05-17 09:19:28 -05:00
|
|
|
span: expr.span }
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn stmt_let(&self, ident: ident, e: @ast::expr) -> @ast::stmt {
|
|
|
|
let ext_cx = *self;
|
|
|
|
quote_stmt!( let $ident = $e; )
|
|
|
|
}
|
|
|
|
|
2013-05-15 17:55:57 -05:00
|
|
|
fn lit_str(&self, span: span, s: @~str) -> @ast::expr {
|
|
|
|
self.expr(
|
|
|
|
span,
|
|
|
|
ast::expr_vstore(
|
|
|
|
self.expr(
|
|
|
|
span,
|
|
|
|
ast::expr_lit(
|
|
|
|
@codemap::spanned { node: ast::lit_str(s),
|
2013-05-17 09:19:28 -05:00
|
|
|
span: span})),
|
2013-05-15 17:55:57 -05:00
|
|
|
ast::expr_vstore_uniq))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lit_uint(&self, span: span, i: uint) -> @ast::expr {
|
|
|
|
self.expr(
|
|
|
|
span,
|
|
|
|
ast::expr_lit(
|
|
|
|
@codemap::spanned { node: ast::lit_uint(i as u64, ast::ty_u),
|
2013-05-17 09:19:28 -05:00
|
|
|
span: span}))
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn blk(&self, span: span, stmts: ~[@ast::stmt], expr: Option<@expr>) -> ast::blk {
|
2013-05-15 17:55:57 -05:00
|
|
|
codemap::spanned {
|
|
|
|
node: ast::blk_ {
|
|
|
|
view_items: ~[],
|
|
|
|
stmts: stmts,
|
2013-05-17 08:51:25 -05:00
|
|
|
expr: expr,
|
2013-05-15 17:55:57 -05:00
|
|
|
id: self.next_id(),
|
|
|
|
rules: ast::default_blk,
|
|
|
|
},
|
|
|
|
span: span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-17 08:51:25 -05:00
|
|
|
fn blk_expr(&self, expr: @ast::expr) -> ast::blk {
|
|
|
|
self.blk(expr.span, ~[], Some(expr))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr(&self, span: span, node: ast::expr_) -> @ast::expr {
|
|
|
|
@ast::expr {
|
|
|
|
id: self.next_id(),
|
|
|
|
callee_id: self.next_id(),
|
|
|
|
node: node,
|
|
|
|
span: span,
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_path(&self, span: span, strs: ~[ast::ident]) -> @ast::expr {
|
|
|
|
self.expr(span, ast::expr_path(self.path(span, strs)))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_path_global(
|
|
|
|
&self,
|
|
|
|
span: span,
|
|
|
|
strs: ~[ast::ident]
|
|
|
|
) -> @ast::expr {
|
|
|
|
self.expr(span, ast::expr_path(self.path_global(span, strs)))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_var(&self, span: span, var: &str) -> @ast::expr {
|
|
|
|
self.expr_path(span, ~[self.ident_of(var)])
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_self(&self, span: span) -> @ast::expr {
|
|
|
|
self.expr(span, ast::expr_self)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_field(
|
|
|
|
&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr,
|
|
|
|
ident: ast::ident
|
|
|
|
) -> @ast::expr {
|
|
|
|
self.expr(span, ast::expr_field(expr, ident, ~[]))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_call(
|
|
|
|
&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr,
|
|
|
|
args: ~[@ast::expr]
|
|
|
|
) -> @ast::expr {
|
|
|
|
self.expr(span, ast::expr_call(expr, args, ast::NoSugar))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_method_call(
|
|
|
|
&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr,
|
|
|
|
ident: ast::ident,
|
|
|
|
args: ~[@ast::expr]
|
|
|
|
) -> @ast::expr {
|
|
|
|
self.expr(span,
|
|
|
|
ast::expr_method_call(expr, ident, ~[], args, ast::NoSugar))
|
|
|
|
}
|
2013-05-17 08:51:25 -05:00
|
|
|
fn expr_blk(&self, b: ast::blk) -> @ast::expr {
|
|
|
|
self.expr(dummy_sp(), ast::expr_block(b))
|
|
|
|
}
|
|
|
|
fn field_imm(&self, name: ident, e: @ast::expr) -> ast::field {
|
|
|
|
spanned {
|
|
|
|
node: ast::field_ { mutbl: ast::m_imm, ident: name, expr: e },
|
|
|
|
span: dummy_sp(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn expr_struct(&self, path: @ast::Path,
|
|
|
|
fields: ~[ast::field]) -> @ast::expr {
|
|
|
|
@ast::expr {
|
|
|
|
id: self.next_id(),
|
|
|
|
callee_id: self.next_id(),
|
|
|
|
node: ast::expr_struct(path, fields, None),
|
|
|
|
span: dummy_sp()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn lambda0(&self, blk: ast::blk) -> @ast::expr {
|
|
|
|
let ext_cx = *self;
|
|
|
|
let blk_e = self.expr(copy blk.span, ast::expr_block(copy blk));
|
|
|
|
quote_expr!( || $blk_e )
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lambda1(&self, blk: ast::blk, ident: ast::ident) -> @ast::expr {
|
|
|
|
let ext_cx = *self;
|
|
|
|
let blk_e = self.expr(copy blk.span, ast::expr_block(copy blk));
|
|
|
|
quote_expr!( |$ident| $blk_e )
|
|
|
|
}
|
2013-05-15 17:55:57 -05:00
|
|
|
|
|
|
|
fn lambda_expr_0(&self, expr: @ast::expr) -> @ast::expr {
|
2013-05-17 08:51:25 -05:00
|
|
|
self.lambda0(self.blk_expr(expr))
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn lambda_expr_1(&self, expr: @ast::expr, ident: ast::ident)
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr {
|
2013-05-17 08:51:25 -05:00
|
|
|
self.lambda1(self.blk_expr(expr), ident)
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn lambda_stmts_0(&self, span: span, stmts: ~[@ast::stmt]) -> @ast::expr {
|
2013-05-17 08:51:25 -05:00
|
|
|
self.lambda0(self.blk(span, stmts, None))
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn lambda_stmts_1(&self,
|
|
|
|
span: span,
|
|
|
|
stmts: ~[@ast::stmt],
|
|
|
|
ident: ast::ident)
|
2013-05-17 09:19:28 -05:00
|
|
|
-> @ast::expr {
|
2013-05-17 08:51:25 -05:00
|
|
|
self.lambda1(self.blk(span, stmts, None), ident)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn arg(&self, name: ident, ty: @ast::Ty) -> ast::arg {
|
|
|
|
ast::arg {
|
|
|
|
is_mutbl: false,
|
|
|
|
ty: ty,
|
|
|
|
pat: @ast::pat {
|
|
|
|
id: self.next_id(),
|
|
|
|
node: ast::pat_ident(
|
|
|
|
ast::bind_by_copy,
|
|
|
|
ast_util::ident_to_path(dummy_sp(), name),
|
|
|
|
None),
|
|
|
|
span: dummy_sp(),
|
|
|
|
},
|
|
|
|
id: self.next_id(),
|
|
|
|
}
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|
2013-05-17 08:51:25 -05:00
|
|
|
|
|
|
|
fn fn_decl(&self, inputs: ~[ast::arg],
|
|
|
|
output: @ast::Ty) -> ast::fn_decl {
|
|
|
|
ast::fn_decl {
|
|
|
|
inputs: inputs,
|
|
|
|
output: output,
|
|
|
|
cf: ast::return_val,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item(&self, name: ident, span: span,
|
|
|
|
node: ast::item_) -> @ast::item {
|
|
|
|
|
|
|
|
// XXX: Would be nice if our generated code didn't violate
|
|
|
|
// Rust coding conventions
|
|
|
|
let non_camel_case_attribute = respan(dummy_sp(), ast::attribute_ {
|
|
|
|
style: ast::attr_outer,
|
|
|
|
value: @respan(dummy_sp(),
|
2013-05-17 09:19:28 -05:00
|
|
|
ast::meta_list(@~"allow", ~[
|
|
|
|
@respan(dummy_sp(),
|
|
|
|
ast::meta_word(
|
|
|
|
@~"non_camel_case_types"))
|
|
|
|
])),
|
2013-05-17 08:51:25 -05:00
|
|
|
is_sugared_doc: false
|
|
|
|
});
|
|
|
|
|
|
|
|
@ast::item { ident: name,
|
2013-05-17 09:19:28 -05:00
|
|
|
attrs: ~[non_camel_case_attribute],
|
|
|
|
id: self.next_id(),
|
|
|
|
node: node,
|
|
|
|
vis: ast::public,
|
|
|
|
span: span }
|
2013-05-17 08:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn item_fn_poly(&self, name: ident,
|
|
|
|
inputs: ~[ast::arg],
|
|
|
|
output: @ast::Ty,
|
|
|
|
generics: Generics,
|
|
|
|
body: ast::blk) -> @ast::item {
|
|
|
|
self.item(name,
|
|
|
|
dummy_sp(),
|
|
|
|
ast::item_fn(self.fn_decl(inputs, output),
|
|
|
|
ast::impure_fn,
|
|
|
|
AbiSet::Rust(),
|
|
|
|
generics,
|
|
|
|
body))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_fn(&self,
|
|
|
|
name: ident,
|
|
|
|
inputs: ~[ast::arg],
|
|
|
|
output: @ast::Ty,
|
|
|
|
body: ast::blk
|
2013-05-17 09:19:28 -05:00
|
|
|
) -> @ast::item {
|
2013-05-17 08:51:25 -05:00
|
|
|
self.item_fn_poly(
|
|
|
|
name,
|
|
|
|
inputs,
|
|
|
|
output,
|
|
|
|
ast_util::empty_generics(),
|
|
|
|
body
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn variant(&self, name: ident, span: span,
|
|
|
|
tys: ~[@ast::Ty]) -> ast::variant {
|
|
|
|
let args = do tys.map |ty| {
|
|
|
|
ast::variant_arg { ty: *ty, id: self.next_id() }
|
|
|
|
};
|
|
|
|
|
|
|
|
spanned {
|
|
|
|
node: ast::variant_ {
|
|
|
|
name: name,
|
|
|
|
attrs: ~[],
|
|
|
|
kind: ast::tuple_variant_kind(args),
|
|
|
|
id: self.next_id(),
|
|
|
|
disr_expr: None,
|
|
|
|
vis: ast::public
|
|
|
|
},
|
|
|
|
span: span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_enum_poly(&self, name: ident, span: span,
|
|
|
|
enum_definition: ast::enum_def,
|
|
|
|
generics: Generics) -> @ast::item {
|
|
|
|
self.item(name, span, ast::item_enum(enum_definition, generics))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_enum(&self, name: ident, span: span,
|
|
|
|
enum_definition: ast::enum_def) -> @ast::item {
|
|
|
|
self.item_enum_poly(name, span, enum_definition,
|
|
|
|
ast_util::empty_generics())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_struct(
|
|
|
|
&self, name: ident,
|
|
|
|
span: span,
|
|
|
|
struct_def: ast::struct_def
|
|
|
|
) -> @ast::item {
|
|
|
|
self.item_struct_poly(
|
|
|
|
name,
|
|
|
|
span,
|
|
|
|
struct_def,
|
|
|
|
ast_util::empty_generics()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_struct_poly(
|
|
|
|
&self,
|
|
|
|
name: ident,
|
|
|
|
span: span,
|
|
|
|
struct_def: ast::struct_def,
|
|
|
|
generics: Generics
|
|
|
|
) -> @ast::item {
|
|
|
|
self.item(name, span, ast::item_struct(@struct_def, generics))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_mod(&self, name: ident, span: span,
|
|
|
|
items: ~[@ast::item]) -> @ast::item {
|
|
|
|
|
|
|
|
// XXX: Total hack: import `core::kinds::Owned` to work around a
|
|
|
|
// parser bug whereby `fn f<T:::kinds::Owned>` doesn't parse.
|
|
|
|
let vi = ast::view_item_use(~[
|
|
|
|
@codemap::spanned {
|
|
|
|
node: ast::view_path_simple(
|
|
|
|
self.ident_of("Owned"),
|
2013-05-17 09:19:28 -05:00
|
|
|
self.mk_raw_path(
|
2013-05-17 08:51:25 -05:00
|
|
|
codemap::dummy_sp(),
|
|
|
|
~[
|
|
|
|
self.ident_of("core"),
|
|
|
|
self.ident_of("kinds"),
|
|
|
|
self.ident_of("Owned")
|
|
|
|
]
|
|
|
|
),
|
|
|
|
self.next_id()
|
|
|
|
),
|
|
|
|
span: codemap::dummy_sp()
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
let vi = @ast::view_item {
|
|
|
|
node: vi,
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: codemap::dummy_sp()
|
|
|
|
};
|
|
|
|
|
|
|
|
self.item(
|
|
|
|
name,
|
|
|
|
span,
|
|
|
|
ast::item_mod(ast::_mod {
|
|
|
|
view_items: ~[vi],
|
|
|
|
items: items,
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_ty_poly(&self, name: ident, span: span, ty: @ast::Ty,
|
|
|
|
generics: Generics) -> @ast::item {
|
|
|
|
self.item(name, span, ast::item_ty(ty, generics))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_ty(&self, name: ident, span: span, ty: @ast::Ty) -> @ast::item {
|
|
|
|
self.item_ty_poly(name, span, ty, ast_util::empty_generics())
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-17 09:19:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn mk_expr(&self,
|
|
|
|
sp: codemap::span,
|
|
|
|
expr: ast::expr_)
|
|
|
|
-> @ast::expr {
|
|
|
|
@ast::expr {
|
|
|
|
id: self.next_id(),
|
|
|
|
callee_id: self.next_id(),
|
|
|
|
node: expr,
|
|
|
|
span: sp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_lit(&self, sp: span, lit: ast::lit_) -> @ast::expr {
|
|
|
|
let sp_lit = @codemap::spanned { node: lit, span: sp };
|
|
|
|
self.mk_expr( sp, ast::expr_lit(sp_lit))
|
|
|
|
}
|
|
|
|
fn mk_int(&self, sp: span, i: int) -> @ast::expr {
|
|
|
|
let lit = ast::lit_int(i as i64, ast::ty_i);
|
|
|
|
return self.mk_lit( sp, lit);
|
|
|
|
}
|
|
|
|
fn mk_uint(&self, sp: span, u: uint) -> @ast::expr {
|
|
|
|
let lit = ast::lit_uint(u as u64, ast::ty_u);
|
|
|
|
return self.mk_lit( sp, lit);
|
|
|
|
}
|
|
|
|
fn mk_u8(&self, sp: span, u: u8) -> @ast::expr {
|
|
|
|
let lit = ast::lit_uint(u as u64, ast::ty_u8);
|
|
|
|
return self.mk_lit( sp, lit);
|
|
|
|
}
|
|
|
|
fn mk_binary(&self, sp: span, op: ast::binop,
|
|
|
|
lhs: @ast::expr, rhs: @ast::expr) -> @ast::expr {
|
|
|
|
self.next_id(); // see ast_util::op_expr_callee_id
|
|
|
|
self.mk_expr( sp, ast::expr_binary(op, lhs, rhs))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_deref(&self, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
self.mk_unary( sp, ast::deref, e)
|
|
|
|
}
|
|
|
|
fn mk_unary(&self, sp: span, op: ast::unop, e: @ast::expr)
|
|
|
|
-> @ast::expr {
|
|
|
|
self.next_id(); // see ast_util::op_expr_callee_id
|
|
|
|
self.mk_expr( sp, ast::expr_unary(op, e))
|
|
|
|
}
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path(&self, sp: span, idents: ~[ast::ident]) -> @ast::Path {
|
|
|
|
self.mk_raw_path_(sp, idents, None, ~[])
|
|
|
|
}
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path_(&self, sp: span,
|
|
|
|
idents: ~[ast::ident],
|
|
|
|
rp: Option<@ast::Lifetime>,
|
|
|
|
types: ~[@ast::Ty])
|
|
|
|
-> @ast::Path {
|
|
|
|
@ast::Path { span: sp,
|
|
|
|
global: false,
|
|
|
|
idents: idents,
|
|
|
|
rp: rp,
|
|
|
|
types: types }
|
|
|
|
}
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path_global(&self, sp: span, idents: ~[ast::ident]) -> @ast::Path {
|
|
|
|
self.mk_raw_path_global_(sp, idents, None, ~[])
|
|
|
|
}
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_raw_path_global_(&self, sp: span,
|
|
|
|
idents: ~[ast::ident],
|
|
|
|
rp: Option<@ast::Lifetime>,
|
|
|
|
types: ~[@ast::Ty]) -> @ast::Path {
|
|
|
|
@ast::Path { span: sp,
|
|
|
|
global: true,
|
|
|
|
idents: idents,
|
|
|
|
rp: rp,
|
|
|
|
types: types }
|
|
|
|
}
|
|
|
|
fn mk_path_raw(&self, sp: span, path: @ast::Path)-> @ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_path(path))
|
|
|
|
}
|
|
|
|
fn mk_path(&self, sp: span, idents: ~[ast::ident])
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_path_raw( sp, self.mk_raw_path(sp, idents))
|
|
|
|
}
|
|
|
|
fn mk_path_global(&self, sp: span, idents: ~[ast::ident])
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_path_raw( sp, self.mk_raw_path_global(sp, idents))
|
|
|
|
}
|
|
|
|
fn mk_access_(&self, sp: span, p: @ast::expr, m: ast::ident)
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_field(p, m, ~[]))
|
|
|
|
}
|
|
|
|
fn mk_access(&self, sp: span, p: ~[ast::ident], m: ast::ident)
|
|
|
|
-> @ast::expr {
|
|
|
|
let pathexpr = self.mk_path( sp, p);
|
|
|
|
return self.mk_access_( sp, pathexpr, m);
|
|
|
|
}
|
|
|
|
fn mk_addr_of(&self, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
return self.mk_expr( sp, ast::expr_addr_of(ast::m_imm, e));
|
|
|
|
}
|
|
|
|
fn mk_mut_addr_of(&self, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
return self.mk_expr( sp, ast::expr_addr_of(ast::m_mutbl, e));
|
|
|
|
}
|
|
|
|
fn mk_method_call(&self,
|
|
|
|
sp: span,
|
|
|
|
rcvr_expr: @ast::expr,
|
|
|
|
method_ident: ast::ident,
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_method_call(rcvr_expr, method_ident, ~[], args, ast::NoSugar))
|
|
|
|
}
|
|
|
|
fn mk_call_(&self, sp: span, fn_expr: @ast::expr,
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_call(fn_expr, args, ast::NoSugar))
|
|
|
|
}
|
|
|
|
fn mk_call(&self, sp: span, fn_path: ~[ast::ident],
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
|
|
|
let pathexpr = self.mk_path( sp, fn_path);
|
|
|
|
return self.mk_call_( sp, pathexpr, args);
|
|
|
|
}
|
|
|
|
fn mk_call_global(&self, sp: span, fn_path: ~[ast::ident],
|
|
|
|
args: ~[@ast::expr]) -> @ast::expr {
|
|
|
|
let pathexpr = self.mk_path_global( sp, fn_path);
|
|
|
|
return self.mk_call_( sp, pathexpr, args);
|
|
|
|
}
|
|
|
|
// e = expr, t = type
|
|
|
|
fn mk_base_vec_e(&self, sp: span, exprs: ~[@ast::expr])
|
|
|
|
-> @ast::expr {
|
|
|
|
let vecexpr = ast::expr_vec(exprs, ast::m_imm);
|
|
|
|
self.mk_expr( sp, vecexpr)
|
|
|
|
}
|
|
|
|
fn mk_vstore_e(&self, sp: span, expr: @ast::expr,
|
|
|
|
vst: ast::expr_vstore) ->
|
|
|
|
@ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_vstore(expr, vst))
|
|
|
|
}
|
|
|
|
fn mk_uniq_vec_e(&self, sp: span, exprs: ~[@ast::expr])
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_vstore_e( sp, self.mk_base_vec_e( sp, exprs), ast::expr_vstore_uniq)
|
|
|
|
}
|
|
|
|
fn mk_slice_vec_e(&self, sp: span, exprs: ~[@ast::expr])
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_vstore_e( sp, self.mk_base_vec_e( sp, exprs),
|
|
|
|
ast::expr_vstore_slice)
|
|
|
|
}
|
|
|
|
fn mk_base_str(&self, sp: span, s: ~str) -> @ast::expr {
|
|
|
|
let lit = ast::lit_str(@s);
|
|
|
|
return self.mk_lit( sp, lit);
|
|
|
|
}
|
|
|
|
fn mk_uniq_str(&self, sp: span, s: ~str) -> @ast::expr {
|
|
|
|
self.mk_vstore_e( sp, self.mk_base_str( sp, s), ast::expr_vstore_uniq)
|
|
|
|
}
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_field(&self, sp: span, f: &Field) -> ast::field {
|
|
|
|
codemap::spanned {
|
|
|
|
node: ast::field_ { mutbl: ast::m_imm, ident: f.ident, expr: f.ex },
|
|
|
|
span: sp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_fields(&self, sp: span, fields: ~[Field]) -> ~[ast::field] {
|
|
|
|
fields.map(|f| self.mk_field(sp, f))
|
|
|
|
}
|
|
|
|
fn mk_struct_e(&self,
|
|
|
|
sp: span,
|
|
|
|
ctor_path: ~[ast::ident],
|
|
|
|
fields: ~[Field])
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_expr( sp,
|
|
|
|
ast::expr_struct(self.mk_raw_path(sp, ctor_path),
|
|
|
|
self.mk_fields(sp, fields),
|
|
|
|
option::None::<@ast::expr>))
|
|
|
|
}
|
|
|
|
fn mk_global_struct_e(&self,
|
|
|
|
sp: span,
|
|
|
|
ctor_path: ~[ast::ident],
|
|
|
|
fields: ~[Field])
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_expr( sp,
|
|
|
|
ast::expr_struct(self.mk_raw_path_global(sp, ctor_path),
|
|
|
|
self.mk_fields(sp, fields),
|
|
|
|
option::None::<@ast::expr>))
|
|
|
|
}
|
|
|
|
fn mk_glob_use(&self,
|
|
|
|
sp: span,
|
|
|
|
vis: ast::visibility,
|
|
|
|
path: ~[ast::ident]) -> @ast::view_item {
|
|
|
|
let glob = @codemap::spanned {
|
|
|
|
node: ast::view_path_glob(self.mk_raw_path(sp, path), self.next_id()),
|
|
|
|
span: sp,
|
|
|
|
};
|
|
|
|
@ast::view_item { node: ast::view_item_use(~[glob]),
|
|
|
|
attrs: ~[],
|
|
|
|
vis: vis,
|
|
|
|
span: sp }
|
|
|
|
}
|
|
|
|
fn mk_local(&self, sp: span, mutbl: bool,
|
|
|
|
ident: ast::ident, ex: @ast::expr) -> @ast::stmt {
|
|
|
|
|
|
|
|
let pat = @ast::pat {
|
|
|
|
id: self.next_id(),
|
|
|
|
node: ast::pat_ident(
|
|
|
|
ast::bind_by_copy,
|
|
|
|
self.mk_raw_path(sp, ~[ident]),
|
|
|
|
None),
|
|
|
|
span: sp,
|
|
|
|
};
|
|
|
|
let ty = @ast::Ty { id: self.next_id(), node: ast::ty_infer, span: sp };
|
|
|
|
let local = @codemap::spanned {
|
|
|
|
node: ast::local_ {
|
|
|
|
is_mutbl: mutbl,
|
|
|
|
ty: ty,
|
|
|
|
pat: pat,
|
|
|
|
init: Some(ex),
|
|
|
|
id: self.next_id(),
|
|
|
|
},
|
|
|
|
span: sp,
|
|
|
|
};
|
|
|
|
let decl = codemap::spanned {node: ast::decl_local(~[local]), span: sp};
|
|
|
|
@codemap::spanned { node: ast::stmt_decl(@decl, self.next_id()), span: sp }
|
|
|
|
}
|
|
|
|
fn mk_block(&self, span: span,
|
|
|
|
view_items: ~[@ast::view_item],
|
|
|
|
stmts: ~[@ast::stmt],
|
|
|
|
expr: Option<@ast::expr>) -> @ast::expr {
|
|
|
|
let blk = codemap::spanned {
|
|
|
|
node: ast::blk_ {
|
|
|
|
view_items: view_items,
|
|
|
|
stmts: stmts,
|
|
|
|
expr: expr,
|
|
|
|
id: self.next_id(),
|
|
|
|
rules: ast::default_blk,
|
|
|
|
},
|
|
|
|
span: span,
|
|
|
|
};
|
|
|
|
self.mk_expr( span, ast::expr_block(blk))
|
|
|
|
}
|
|
|
|
fn mk_block_(&self,
|
|
|
|
span: span,
|
|
|
|
stmts: ~[@ast::stmt])
|
|
|
|
-> ast::blk {
|
|
|
|
codemap::spanned {
|
|
|
|
node: ast::blk_ {
|
|
|
|
view_items: ~[],
|
|
|
|
stmts: stmts,
|
|
|
|
expr: None,
|
|
|
|
id: self.next_id(),
|
|
|
|
rules: ast::default_blk,
|
|
|
|
},
|
|
|
|
span: span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn mk_simple_block(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> ast::blk {
|
|
|
|
codemap::spanned {
|
|
|
|
node: ast::blk_ {
|
|
|
|
view_items: ~[],
|
|
|
|
stmts: ~[],
|
|
|
|
expr: Some(expr),
|
|
|
|
id: self.next_id(),
|
|
|
|
rules: ast::default_blk,
|
|
|
|
},
|
|
|
|
span: span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn mk_lambda_(&self,
|
|
|
|
span: span,
|
|
|
|
fn_decl: ast::fn_decl,
|
|
|
|
blk: ast::blk)
|
|
|
|
-> @ast::expr {
|
|
|
|
self.mk_expr( span, ast::expr_fn_block(fn_decl, blk))
|
|
|
|
}
|
|
|
|
fn mk_lambda(&self,
|
|
|
|
span: span,
|
|
|
|
fn_decl: ast::fn_decl,
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> @ast::expr {
|
|
|
|
let blk = self.mk_simple_block( span, expr);
|
|
|
|
self.mk_lambda_( span, fn_decl, blk)
|
|
|
|
}
|
|
|
|
fn mk_lambda_stmts(&self,
|
|
|
|
span: span,
|
|
|
|
fn_decl: ast::fn_decl,
|
|
|
|
stmts: ~[@ast::stmt])
|
|
|
|
-> @ast::expr {
|
|
|
|
let blk = self.mk_block( span, ~[], stmts, None);
|
|
|
|
self.mk_lambda( span, fn_decl, blk)
|
|
|
|
}
|
|
|
|
fn mk_lambda_no_args(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> @ast::expr {
|
|
|
|
let fn_decl = self.mk_fn_decl(~[], self.mk_ty_infer( span));
|
|
|
|
self.mk_lambda( span, fn_decl, expr)
|
|
|
|
}
|
|
|
|
fn mk_copy(&self, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_copy(e))
|
|
|
|
}
|
|
|
|
fn mk_managed(&self, sp: span, e: @ast::expr) -> @ast::expr {
|
|
|
|
self.mk_expr( sp, ast::expr_unary(ast::box(ast::m_imm), e))
|
|
|
|
}
|
|
|
|
fn mk_pat(&self, span: span, pat: ast::pat_) -> @ast::pat {
|
|
|
|
@ast::pat { id: self.next_id(), node: pat, span: span }
|
|
|
|
}
|
|
|
|
fn mk_pat_wild(&self, span: span) -> @ast::pat {
|
|
|
|
self.mk_pat( span, ast::pat_wild)
|
|
|
|
}
|
|
|
|
fn mk_pat_lit(&self,
|
|
|
|
span: span,
|
|
|
|
expr: @ast::expr) -> @ast::pat {
|
|
|
|
self.mk_pat( span, ast::pat_lit(expr))
|
|
|
|
}
|
|
|
|
fn mk_pat_ident(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident) -> @ast::pat {
|
|
|
|
self.mk_pat_ident_with_binding_mode( span, ident, ast::bind_by_copy)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_pat_ident_with_binding_mode(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident,
|
|
|
|
bm: ast::binding_mode) -> @ast::pat {
|
|
|
|
let path = self.mk_raw_path(span, ~[ ident ]);
|
|
|
|
let pat = ast::pat_ident(bm, path, None);
|
|
|
|
self.mk_pat( span, pat)
|
|
|
|
}
|
|
|
|
fn mk_pat_enum(&self,
|
|
|
|
span: span,
|
|
|
|
path: @ast::Path,
|
|
|
|
subpats: ~[@ast::pat])
|
|
|
|
-> @ast::pat {
|
|
|
|
let pat = ast::pat_enum(path, Some(subpats));
|
|
|
|
self.mk_pat( span, pat)
|
|
|
|
}
|
|
|
|
fn mk_pat_struct(&self,
|
|
|
|
span: span,
|
|
|
|
path: @ast::Path,
|
|
|
|
field_pats: ~[ast::field_pat])
|
|
|
|
-> @ast::pat {
|
|
|
|
let pat = ast::pat_struct(path, field_pats, false);
|
|
|
|
self.mk_pat( span, pat)
|
|
|
|
}
|
|
|
|
fn mk_bool(&self, span: span, value: bool) -> @ast::expr {
|
|
|
|
let lit_expr = ast::expr_lit(@codemap::spanned {
|
|
|
|
node: ast::lit_bool(value),
|
|
|
|
span: span });
|
|
|
|
self.mk_expr( span, lit_expr)
|
|
|
|
}
|
|
|
|
fn mk_stmt(&self, span: span, expr: @ast::expr) -> @ast::stmt {
|
|
|
|
let stmt_ = ast::stmt_semi(expr, self.next_id());
|
|
|
|
@codemap::spanned { node: stmt_, span: span }
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: unused self
|
|
|
|
fn mk_ty_mt(&self, ty: @ast::Ty, mutbl: ast::mutability) -> ast::mt {
|
|
|
|
ast::mt {
|
|
|
|
ty: ty,
|
|
|
|
mutbl: mutbl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_ty(&self,
|
|
|
|
span: span,
|
|
|
|
ty: ast::ty_) -> @ast::Ty {
|
|
|
|
@ast::Ty {
|
|
|
|
id: self.next_id(),
|
|
|
|
span: span,
|
|
|
|
node: ty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_ty_path(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::Ty {
|
|
|
|
let ty = self.mk_raw_path(span, idents);
|
|
|
|
self.mk_ty_path_path( span, ty)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_ty_path_global(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::Ty {
|
|
|
|
let ty = self.mk_raw_path_global(span, idents);
|
|
|
|
self.mk_ty_path_path( span, ty)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_ty_path_path(&self,
|
|
|
|
span: span,
|
|
|
|
path: @ast::Path)
|
|
|
|
-> @ast::Ty {
|
|
|
|
let ty = ast::ty_path(path, self.next_id());
|
|
|
|
self.mk_ty( span, ty)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_ty_rptr(&self,
|
|
|
|
span: span,
|
|
|
|
ty: @ast::Ty,
|
|
|
|
lifetime: Option<@ast::Lifetime>,
|
|
|
|
mutbl: ast::mutability)
|
|
|
|
-> @ast::Ty {
|
|
|
|
self.mk_ty( span,
|
|
|
|
ast::ty_rptr(lifetime, self.mk_ty_mt(ty, mutbl)))
|
|
|
|
}
|
|
|
|
fn mk_ty_uniq(&self, span: span, ty: @ast::Ty) -> @ast::Ty {
|
|
|
|
self.mk_ty( span, ast::ty_uniq(self.mk_ty_mt(ty, ast::m_imm)))
|
|
|
|
}
|
|
|
|
fn mk_ty_box(&self, span: span,
|
|
|
|
ty: @ast::Ty, mutbl: ast::mutability) -> @ast::Ty {
|
|
|
|
self.mk_ty( span, ast::ty_box(self.mk_ty_mt(ty, mutbl)))
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn mk_ty_infer(&self, span: span) -> @ast::Ty {
|
|
|
|
self.mk_ty( span, ast::ty_infer)
|
|
|
|
}
|
|
|
|
fn mk_trait_ref_global(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ ast::ident ])
|
|
|
|
-> @ast::trait_ref
|
|
|
|
{
|
|
|
|
self.mk_trait_ref_( self.mk_raw_path_global(span, idents))
|
|
|
|
}
|
|
|
|
fn mk_trait_ref_(&self, path: @ast::Path) -> @ast::trait_ref {
|
|
|
|
@ast::trait_ref {
|
|
|
|
path: path,
|
|
|
|
ref_id: self.next_id()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn mk_simple_ty_path(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident)
|
|
|
|
-> @ast::Ty {
|
|
|
|
self.mk_ty_path( span, ~[ ident ])
|
|
|
|
}
|
|
|
|
fn mk_arg(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident,
|
|
|
|
ty: @ast::Ty)
|
|
|
|
-> ast::arg {
|
|
|
|
let arg_pat = self.mk_pat_ident( span, ident);
|
|
|
|
ast::arg {
|
|
|
|
is_mutbl: false,
|
|
|
|
ty: ty,
|
|
|
|
pat: arg_pat,
|
|
|
|
id: self.next_id()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// XXX unused self
|
|
|
|
fn mk_fn_decl(&self, inputs: ~[ast::arg], output: @ast::Ty) -> ast::fn_decl {
|
|
|
|
ast::fn_decl { inputs: inputs, output: output, cf: ast::return_val }
|
|
|
|
}
|
|
|
|
fn mk_trait_ty_param_bound_global(&self,
|
|
|
|
span: span,
|
|
|
|
idents: ~[ast::ident])
|
|
|
|
-> ast::TyParamBound {
|
|
|
|
ast::TraitTyParamBound(self.mk_trait_ref_global( span, idents))
|
|
|
|
}
|
|
|
|
fn mk_trait_ty_param_bound_(&self,
|
|
|
|
path: @ast::Path) -> ast::TyParamBound {
|
|
|
|
ast::TraitTyParamBound(self.mk_trait_ref_( path))
|
|
|
|
}
|
|
|
|
fn mk_ty_param(&self,
|
|
|
|
ident: ast::ident,
|
|
|
|
bounds: @OptVec<ast::TyParamBound>)
|
|
|
|
-> ast::TyParam {
|
|
|
|
ast::TyParam { ident: ident, id: self.next_id(), bounds: bounds }
|
|
|
|
}
|
|
|
|
fn mk_lifetime(&self,
|
|
|
|
span: span,
|
|
|
|
ident: ast::ident)
|
|
|
|
-> ast::Lifetime {
|
|
|
|
ast::Lifetime { id: self.next_id(), span: span, ident: ident }
|
|
|
|
}
|
|
|
|
fn mk_arm(&self,
|
|
|
|
span: span,
|
|
|
|
pats: ~[@ast::pat],
|
|
|
|
expr: @ast::expr)
|
|
|
|
-> ast::arm {
|
|
|
|
ast::arm {
|
|
|
|
pats: pats,
|
|
|
|
guard: None,
|
|
|
|
body: self.mk_simple_block( span, expr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn mk_unreachable(&self, span: span) -> @ast::expr {
|
|
|
|
let loc = self.codemap().lookup_char_pos(span.lo);
|
|
|
|
self.mk_call_global(
|
|
|
|
span,
|
|
|
|
~[
|
|
|
|
self.ident_of("core"),
|
|
|
|
self.ident_of("sys"),
|
|
|
|
self.ident_of("FailWithCause"),
|
|
|
|
self.ident_of("fail_with"),
|
|
|
|
],
|
|
|
|
~[
|
|
|
|
self.mk_base_str( span, ~"internal error: entered unreachable code"),
|
|
|
|
self.mk_base_str( span, copy loc.file.name),
|
|
|
|
self.mk_uint( span, loc.line),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
fn mk_unreachable_arm(&self, span: span) -> ast::arm {
|
|
|
|
self.mk_arm( span, ~[self.mk_pat_wild( span)], self.mk_unreachable( span))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_self(&self, span: span) -> @ast::expr {
|
|
|
|
self.mk_expr( span, ast::expr_self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub trait Duplicate {
|
|
|
|
//
|
|
|
|
// Duplication functions
|
|
|
|
//
|
|
|
|
// These functions just duplicate AST nodes.
|
|
|
|
//
|
|
|
|
|
|
|
|
fn duplicate(&self, cx: @ExtCtxt) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Duplicate for @ast::expr {
|
|
|
|
fn duplicate(&self, cx: @ExtCtxt) -> @ast::expr {
|
|
|
|
let folder = fold::default_ast_fold();
|
|
|
|
let folder = @fold::AstFoldFns {
|
|
|
|
new_id: |_| cx.next_id(),
|
|
|
|
..*folder
|
|
|
|
};
|
|
|
|
let folder = fold::make_fold(folder);
|
|
|
|
folder.fold_expr(*self)
|
|
|
|
}
|
2013-05-15 17:55:57 -05:00
|
|
|
}
|