]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_expand/src/build.rs
Rollup merge of #100718 - GuillaumeGomez:fix-item-info, r=jsha
[rust.git] / compiler / rustc_expand / src / build.rs
1 use crate::base::ExtCtxt;
2
3 use rustc_ast::attr;
4 use rustc_ast::ptr::P;
5 use rustc_ast::{self as ast, AttrVec, BlockCheckMode, Expr, LocalKind, PatKind, UnOp};
6 use rustc_data_structures::sync::Lrc;
7 use rustc_span::source_map::Spanned;
8 use rustc_span::symbol::{kw, sym, Ident, Symbol};
9
10 use rustc_span::Span;
11
12 impl<'a> ExtCtxt<'a> {
13     pub fn path(&self, span: Span, strs: Vec<Ident>) -> ast::Path {
14         self.path_all(span, false, strs, vec![])
15     }
16     pub fn path_ident(&self, span: Span, id: Ident) -> ast::Path {
17         self.path(span, vec![id])
18     }
19     pub fn path_global(&self, span: Span, strs: Vec<Ident>) -> ast::Path {
20         self.path_all(span, true, strs, vec![])
21     }
22     pub fn path_all(
23         &self,
24         span: Span,
25         global: bool,
26         mut idents: Vec<Ident>,
27         args: Vec<ast::GenericArg>,
28     ) -> ast::Path {
29         assert!(!idents.is_empty());
30         let add_root = global && !idents[0].is_path_segment_keyword();
31         let mut segments = Vec::with_capacity(idents.len() + add_root as usize);
32         if add_root {
33             segments.push(ast::PathSegment::path_root(span));
34         }
35         let last_ident = idents.pop().unwrap();
36         segments.extend(
37             idents.into_iter().map(|ident| ast::PathSegment::from_ident(ident.with_span_pos(span))),
38         );
39         let args = if !args.is_empty() {
40             let args = args.into_iter().map(ast::AngleBracketedArg::Arg).collect();
41             ast::AngleBracketedArgs { args, span }.into()
42         } else {
43             None
44         };
45         segments.push(ast::PathSegment {
46             ident: last_ident.with_span_pos(span),
47             id: ast::DUMMY_NODE_ID,
48             args,
49         });
50         ast::Path { span, segments, tokens: None }
51     }
52
53     pub fn ty_mt(&self, ty: P<ast::Ty>, mutbl: ast::Mutability) -> ast::MutTy {
54         ast::MutTy { ty, mutbl }
55     }
56
57     pub fn ty(&self, span: Span, kind: ast::TyKind) -> P<ast::Ty> {
58         P(ast::Ty { id: ast::DUMMY_NODE_ID, span, kind, tokens: None })
59     }
60
61     pub fn ty_infer(&self, span: Span) -> P<ast::Ty> {
62         self.ty(span, ast::TyKind::Infer)
63     }
64
65     pub fn ty_path(&self, path: ast::Path) -> P<ast::Ty> {
66         self.ty(path.span, ast::TyKind::Path(None, path))
67     }
68
69     // Might need to take bounds as an argument in the future, if you ever want
70     // to generate a bounded existential trait type.
71     pub fn ty_ident(&self, span: Span, ident: Ident) -> P<ast::Ty> {
72         self.ty_path(self.path_ident(span, ident))
73     }
74
75     pub fn anon_const(&self, span: Span, kind: ast::ExprKind) -> ast::AnonConst {
76         ast::AnonConst {
77             id: ast::DUMMY_NODE_ID,
78             value: P(ast::Expr {
79                 id: ast::DUMMY_NODE_ID,
80                 kind,
81                 span,
82                 attrs: AttrVec::new(),
83                 tokens: None,
84             }),
85         }
86     }
87
88     pub fn const_ident(&self, span: Span, ident: Ident) -> ast::AnonConst {
89         self.anon_const(span, ast::ExprKind::Path(None, self.path_ident(span, ident)))
90     }
91
92     pub fn ty_rptr(
93         &self,
94         span: Span,
95         ty: P<ast::Ty>,
96         lifetime: Option<ast::Lifetime>,
97         mutbl: ast::Mutability,
98     ) -> P<ast::Ty> {
99         self.ty(span, ast::TyKind::Rptr(lifetime, self.ty_mt(ty, mutbl)))
100     }
101
102     pub fn ty_ptr(&self, span: Span, ty: P<ast::Ty>, mutbl: ast::Mutability) -> P<ast::Ty> {
103         self.ty(span, ast::TyKind::Ptr(self.ty_mt(ty, mutbl)))
104     }
105
106     pub fn typaram(
107         &self,
108         span: Span,
109         ident: Ident,
110         bounds: ast::GenericBounds,
111         default: Option<P<ast::Ty>>,
112     ) -> ast::GenericParam {
113         ast::GenericParam {
114             ident: ident.with_span_pos(span),
115             id: ast::DUMMY_NODE_ID,
116             attrs: AttrVec::new(),
117             bounds,
118             kind: ast::GenericParamKind::Type { default },
119             is_placeholder: false,
120             colon_span: None,
121         }
122     }
123
124     pub fn trait_ref(&self, path: ast::Path) -> ast::TraitRef {
125         ast::TraitRef { path, ref_id: ast::DUMMY_NODE_ID }
126     }
127
128     pub fn poly_trait_ref(&self, span: Span, path: ast::Path) -> ast::PolyTraitRef {
129         ast::PolyTraitRef {
130             bound_generic_params: Vec::new(),
131             trait_ref: self.trait_ref(path),
132             span,
133         }
134     }
135
136     pub fn trait_bound(&self, path: ast::Path) -> ast::GenericBound {
137         ast::GenericBound::Trait(
138             self.poly_trait_ref(path.span, path),
139             ast::TraitBoundModifier::None,
140         )
141     }
142
143     pub fn lifetime(&self, span: Span, ident: Ident) -> ast::Lifetime {
144         ast::Lifetime { id: ast::DUMMY_NODE_ID, ident: ident.with_span_pos(span) }
145     }
146
147     pub fn lifetime_static(&self, span: Span) -> ast::Lifetime {
148         self.lifetime(span, Ident::new(kw::StaticLifetime, span))
149     }
150
151     pub fn stmt_expr(&self, expr: P<ast::Expr>) -> ast::Stmt {
152         ast::Stmt { id: ast::DUMMY_NODE_ID, span: expr.span, kind: ast::StmtKind::Expr(expr) }
153     }
154
155     pub fn stmt_let_pat(&self, sp: Span, pat: P<ast::Pat>, ex: P<ast::Expr>) -> ast::Stmt {
156         let local = P(ast::Local {
157             pat,
158             ty: None,
159             id: ast::DUMMY_NODE_ID,
160             kind: LocalKind::Init(ex),
161             span: sp,
162             attrs: AttrVec::new(),
163             tokens: None,
164         });
165         self.stmt_local(local, sp)
166     }
167
168     pub fn stmt_let(&self, sp: Span, mutbl: bool, ident: Ident, ex: P<ast::Expr>) -> ast::Stmt {
169         self.stmt_let_ty(sp, mutbl, ident, None, ex)
170     }
171
172     pub fn stmt_let_ty(
173         &self,
174         sp: Span,
175         mutbl: bool,
176         ident: Ident,
177         ty: Option<P<ast::Ty>>,
178         ex: P<ast::Expr>,
179     ) -> ast::Stmt {
180         let pat = if mutbl {
181             let binding_mode = ast::BindingMode::ByValue(ast::Mutability::Mut);
182             self.pat_ident_binding_mode(sp, ident, binding_mode)
183         } else {
184             self.pat_ident(sp, ident)
185         };
186         let local = P(ast::Local {
187             pat,
188             ty,
189             id: ast::DUMMY_NODE_ID,
190             kind: LocalKind::Init(ex),
191             span: sp,
192             attrs: AttrVec::new(),
193             tokens: None,
194         });
195         self.stmt_local(local, sp)
196     }
197
198     // Generates `let _: Type;`, which is usually used for type assertions.
199     pub fn stmt_let_type_only(&self, span: Span, ty: P<ast::Ty>) -> ast::Stmt {
200         let local = P(ast::Local {
201             pat: self.pat_wild(span),
202             ty: Some(ty),
203             id: ast::DUMMY_NODE_ID,
204             kind: LocalKind::Decl,
205             span,
206             attrs: AttrVec::new(),
207             tokens: None,
208         });
209         self.stmt_local(local, span)
210     }
211
212     pub fn stmt_local(&self, local: P<ast::Local>, span: Span) -> ast::Stmt {
213         ast::Stmt { id: ast::DUMMY_NODE_ID, kind: ast::StmtKind::Local(local), span }
214     }
215
216     pub fn stmt_item(&self, sp: Span, item: P<ast::Item>) -> ast::Stmt {
217         ast::Stmt { id: ast::DUMMY_NODE_ID, kind: ast::StmtKind::Item(item), span: sp }
218     }
219
220     pub fn block_expr(&self, expr: P<ast::Expr>) -> P<ast::Block> {
221         self.block(
222             expr.span,
223             vec![ast::Stmt {
224                 id: ast::DUMMY_NODE_ID,
225                 span: expr.span,
226                 kind: ast::StmtKind::Expr(expr),
227             }],
228         )
229     }
230     pub fn block(&self, span: Span, stmts: Vec<ast::Stmt>) -> P<ast::Block> {
231         P(ast::Block {
232             stmts,
233             id: ast::DUMMY_NODE_ID,
234             rules: BlockCheckMode::Default,
235             span,
236             tokens: None,
237             could_be_bare_literal: false,
238         })
239     }
240
241     pub fn expr(&self, span: Span, kind: ast::ExprKind) -> P<ast::Expr> {
242         P(ast::Expr { id: ast::DUMMY_NODE_ID, kind, span, attrs: AttrVec::new(), tokens: None })
243     }
244
245     pub fn expr_path(&self, path: ast::Path) -> P<ast::Expr> {
246         self.expr(path.span, ast::ExprKind::Path(None, path))
247     }
248
249     pub fn expr_ident(&self, span: Span, id: Ident) -> P<ast::Expr> {
250         self.expr_path(self.path_ident(span, id))
251     }
252     pub fn expr_self(&self, span: Span) -> P<ast::Expr> {
253         self.expr_ident(span, Ident::with_dummy_span(kw::SelfLower))
254     }
255
256     pub fn expr_binary(
257         &self,
258         sp: Span,
259         op: ast::BinOpKind,
260         lhs: P<ast::Expr>,
261         rhs: P<ast::Expr>,
262     ) -> P<ast::Expr> {
263         self.expr(sp, ast::ExprKind::Binary(Spanned { node: op, span: sp }, lhs, rhs))
264     }
265
266     pub fn expr_deref(&self, sp: Span, e: P<ast::Expr>) -> P<ast::Expr> {
267         self.expr(sp, ast::ExprKind::Unary(UnOp::Deref, e))
268     }
269
270     pub fn expr_addr_of(&self, sp: Span, e: P<ast::Expr>) -> P<ast::Expr> {
271         self.expr(sp, ast::ExprKind::AddrOf(ast::BorrowKind::Ref, ast::Mutability::Not, e))
272     }
273
274     pub fn expr_call(
275         &self,
276         span: Span,
277         expr: P<ast::Expr>,
278         args: Vec<P<ast::Expr>>,
279     ) -> P<ast::Expr> {
280         self.expr(span, ast::ExprKind::Call(expr, args))
281     }
282     pub fn expr_call_ident(&self, span: Span, id: Ident, args: Vec<P<ast::Expr>>) -> P<ast::Expr> {
283         self.expr(span, ast::ExprKind::Call(self.expr_ident(span, id), args))
284     }
285     pub fn expr_call_global(
286         &self,
287         sp: Span,
288         fn_path: Vec<Ident>,
289         args: Vec<P<ast::Expr>>,
290     ) -> P<ast::Expr> {
291         let pathexpr = self.expr_path(self.path_global(sp, fn_path));
292         self.expr_call(sp, pathexpr, args)
293     }
294     pub fn expr_block(&self, b: P<ast::Block>) -> P<ast::Expr> {
295         self.expr(b.span, ast::ExprKind::Block(b, None))
296     }
297     pub fn field_imm(&self, span: Span, ident: Ident, e: P<ast::Expr>) -> ast::ExprField {
298         ast::ExprField {
299             ident: ident.with_span_pos(span),
300             expr: e,
301             span,
302             is_shorthand: false,
303             attrs: AttrVec::new(),
304             id: ast::DUMMY_NODE_ID,
305             is_placeholder: false,
306         }
307     }
308     pub fn expr_struct(
309         &self,
310         span: Span,
311         path: ast::Path,
312         fields: Vec<ast::ExprField>,
313     ) -> P<ast::Expr> {
314         self.expr(
315             span,
316             ast::ExprKind::Struct(P(ast::StructExpr {
317                 qself: None,
318                 path,
319                 fields,
320                 rest: ast::StructRest::None,
321             })),
322         )
323     }
324     pub fn expr_struct_ident(
325         &self,
326         span: Span,
327         id: Ident,
328         fields: Vec<ast::ExprField>,
329     ) -> P<ast::Expr> {
330         self.expr_struct(span, self.path_ident(span, id), fields)
331     }
332
333     fn expr_lit(&self, span: Span, lit_kind: ast::LitKind) -> P<ast::Expr> {
334         let lit = ast::Lit::from_lit_kind(lit_kind, span);
335         self.expr(span, ast::ExprKind::Lit(lit))
336     }
337
338     pub fn expr_usize(&self, span: Span, i: usize) -> P<ast::Expr> {
339         self.expr_lit(
340             span,
341             ast::LitKind::Int(i as u128, ast::LitIntType::Unsigned(ast::UintTy::Usize)),
342         )
343     }
344
345     pub fn expr_u32(&self, sp: Span, u: u32) -> P<ast::Expr> {
346         self.expr_lit(sp, ast::LitKind::Int(u as u128, ast::LitIntType::Unsigned(ast::UintTy::U32)))
347     }
348
349     pub fn expr_bool(&self, sp: Span, value: bool) -> P<ast::Expr> {
350         self.expr_lit(sp, ast::LitKind::Bool(value))
351     }
352
353     pub fn expr_str(&self, sp: Span, s: Symbol) -> P<ast::Expr> {
354         self.expr_lit(sp, ast::LitKind::Str(s, ast::StrStyle::Cooked))
355     }
356
357     pub fn expr_char(&self, sp: Span, ch: char) -> P<ast::Expr> {
358         self.expr_lit(sp, ast::LitKind::Char(ch))
359     }
360
361     pub fn expr_byte_str(&self, sp: Span, bytes: Vec<u8>) -> P<ast::Expr> {
362         self.expr_lit(sp, ast::LitKind::ByteStr(Lrc::from(bytes)))
363     }
364
365     /// `[expr1, expr2, ...]`
366     pub fn expr_array(&self, sp: Span, exprs: Vec<P<ast::Expr>>) -> P<ast::Expr> {
367         self.expr(sp, ast::ExprKind::Array(exprs))
368     }
369
370     /// `&[expr1, expr2, ...]`
371     pub fn expr_array_ref(&self, sp: Span, exprs: Vec<P<ast::Expr>>) -> P<ast::Expr> {
372         self.expr_addr_of(sp, self.expr_array(sp, exprs))
373     }
374
375     pub fn expr_cast(&self, sp: Span, expr: P<ast::Expr>, ty: P<ast::Ty>) -> P<ast::Expr> {
376         self.expr(sp, ast::ExprKind::Cast(expr, ty))
377     }
378
379     pub fn expr_some(&self, sp: Span, expr: P<ast::Expr>) -> P<ast::Expr> {
380         let some = self.std_path(&[sym::option, sym::Option, sym::Some]);
381         self.expr_call_global(sp, some, vec![expr])
382     }
383
384     pub fn expr_none(&self, sp: Span) -> P<ast::Expr> {
385         let none = self.std_path(&[sym::option, sym::Option, sym::None]);
386         self.expr_path(self.path_global(sp, none))
387     }
388     pub fn expr_tuple(&self, sp: Span, exprs: Vec<P<ast::Expr>>) -> P<ast::Expr> {
389         self.expr(sp, ast::ExprKind::Tup(exprs))
390     }
391
392     pub fn expr_fail(&self, span: Span, msg: Symbol) -> P<ast::Expr> {
393         self.expr_call_global(
394             span,
395             [sym::std, sym::rt, sym::begin_panic].iter().map(|s| Ident::new(*s, span)).collect(),
396             vec![self.expr_str(span, msg)],
397         )
398     }
399
400     pub fn expr_unreachable(&self, span: Span) -> P<ast::Expr> {
401         self.expr_fail(span, Symbol::intern("internal error: entered unreachable code"))
402     }
403
404     pub fn expr_ok(&self, sp: Span, expr: P<ast::Expr>) -> P<ast::Expr> {
405         let ok = self.std_path(&[sym::result, sym::Result, sym::Ok]);
406         self.expr_call_global(sp, ok, vec![expr])
407     }
408
409     pub fn expr_try(&self, sp: Span, head: P<ast::Expr>) -> P<ast::Expr> {
410         let ok = self.std_path(&[sym::result, sym::Result, sym::Ok]);
411         let ok_path = self.path_global(sp, ok);
412         let err = self.std_path(&[sym::result, sym::Result, sym::Err]);
413         let err_path = self.path_global(sp, err);
414
415         let binding_variable = Ident::new(sym::__try_var, sp);
416         let binding_pat = self.pat_ident(sp, binding_variable);
417         let binding_expr = self.expr_ident(sp, binding_variable);
418
419         // `Ok(__try_var)` pattern
420         let ok_pat = self.pat_tuple_struct(sp, ok_path, vec![binding_pat.clone()]);
421
422         // `Err(__try_var)` (pattern and expression respectively)
423         let err_pat = self.pat_tuple_struct(sp, err_path.clone(), vec![binding_pat]);
424         let err_inner_expr =
425             self.expr_call(sp, self.expr_path(err_path), vec![binding_expr.clone()]);
426         // `return Err(__try_var)`
427         let err_expr = self.expr(sp, ast::ExprKind::Ret(Some(err_inner_expr)));
428
429         // `Ok(__try_var) => __try_var`
430         let ok_arm = self.arm(sp, ok_pat, binding_expr);
431         // `Err(__try_var) => return Err(__try_var)`
432         let err_arm = self.arm(sp, err_pat, err_expr);
433
434         // `match head { Ok() => ..., Err() => ... }`
435         self.expr_match(sp, head, vec![ok_arm, err_arm])
436     }
437
438     pub fn pat(&self, span: Span, kind: PatKind) -> P<ast::Pat> {
439         P(ast::Pat { id: ast::DUMMY_NODE_ID, kind, span, tokens: None })
440     }
441     pub fn pat_wild(&self, span: Span) -> P<ast::Pat> {
442         self.pat(span, PatKind::Wild)
443     }
444     pub fn pat_lit(&self, span: Span, expr: P<ast::Expr>) -> P<ast::Pat> {
445         self.pat(span, PatKind::Lit(expr))
446     }
447     pub fn pat_ident(&self, span: Span, ident: Ident) -> P<ast::Pat> {
448         let binding_mode = ast::BindingMode::ByValue(ast::Mutability::Not);
449         self.pat_ident_binding_mode(span, ident, binding_mode)
450     }
451
452     pub fn pat_ident_binding_mode(
453         &self,
454         span: Span,
455         ident: Ident,
456         bm: ast::BindingMode,
457     ) -> P<ast::Pat> {
458         let pat = PatKind::Ident(bm, ident.with_span_pos(span), None);
459         self.pat(span, pat)
460     }
461     pub fn pat_path(&self, span: Span, path: ast::Path) -> P<ast::Pat> {
462         self.pat(span, PatKind::Path(None, path))
463     }
464     pub fn pat_tuple_struct(
465         &self,
466         span: Span,
467         path: ast::Path,
468         subpats: Vec<P<ast::Pat>>,
469     ) -> P<ast::Pat> {
470         self.pat(span, PatKind::TupleStruct(None, path, subpats))
471     }
472     pub fn pat_struct(
473         &self,
474         span: Span,
475         path: ast::Path,
476         field_pats: Vec<ast::PatField>,
477     ) -> P<ast::Pat> {
478         self.pat(span, PatKind::Struct(None, path, field_pats, false))
479     }
480     pub fn pat_tuple(&self, span: Span, pats: Vec<P<ast::Pat>>) -> P<ast::Pat> {
481         self.pat(span, PatKind::Tuple(pats))
482     }
483
484     pub fn pat_some(&self, span: Span, pat: P<ast::Pat>) -> P<ast::Pat> {
485         let some = self.std_path(&[sym::option, sym::Option, sym::Some]);
486         let path = self.path_global(span, some);
487         self.pat_tuple_struct(span, path, vec![pat])
488     }
489
490     pub fn arm(&self, span: Span, pat: P<ast::Pat>, expr: P<ast::Expr>) -> ast::Arm {
491         ast::Arm {
492             attrs: AttrVec::new(),
493             pat,
494             guard: None,
495             body: expr,
496             span,
497             id: ast::DUMMY_NODE_ID,
498             is_placeholder: false,
499         }
500     }
501
502     pub fn arm_unreachable(&self, span: Span) -> ast::Arm {
503         self.arm(span, self.pat_wild(span), self.expr_unreachable(span))
504     }
505
506     pub fn expr_match(&self, span: Span, arg: P<ast::Expr>, arms: Vec<ast::Arm>) -> P<Expr> {
507         self.expr(span, ast::ExprKind::Match(arg, arms))
508     }
509
510     pub fn expr_if(
511         &self,
512         span: Span,
513         cond: P<ast::Expr>,
514         then: P<ast::Expr>,
515         els: Option<P<ast::Expr>>,
516     ) -> P<ast::Expr> {
517         let els = els.map(|x| self.expr_block(self.block_expr(x)));
518         self.expr(span, ast::ExprKind::If(cond, self.block_expr(then), els))
519     }
520
521     pub fn lambda(&self, span: Span, ids: Vec<Ident>, body: P<ast::Expr>) -> P<ast::Expr> {
522         let fn_decl = self.fn_decl(
523             ids.iter().map(|id| self.param(span, *id, self.ty(span, ast::TyKind::Infer))).collect(),
524             ast::FnRetTy::Default(span),
525         );
526
527         // FIXME -- We are using `span` as the span of the `|...|`
528         // part of the lambda, but it probably (maybe?) corresponds to
529         // the entire lambda body. Probably we should extend the API
530         // here, but that's not entirely clear.
531         self.expr(
532             span,
533             ast::ExprKind::Closure(
534                 ast::ClosureBinder::NotPresent,
535                 ast::CaptureBy::Ref,
536                 ast::Async::No,
537                 ast::Movability::Movable,
538                 fn_decl,
539                 body,
540                 span,
541             ),
542         )
543     }
544
545     pub fn lambda0(&self, span: Span, body: P<ast::Expr>) -> P<ast::Expr> {
546         self.lambda(span, Vec::new(), body)
547     }
548
549     pub fn lambda1(&self, span: Span, body: P<ast::Expr>, ident: Ident) -> P<ast::Expr> {
550         self.lambda(span, vec![ident], body)
551     }
552
553     pub fn lambda_stmts_1(&self, span: Span, stmts: Vec<ast::Stmt>, ident: Ident) -> P<ast::Expr> {
554         self.lambda1(span, self.expr_block(self.block(span, stmts)), ident)
555     }
556
557     pub fn param(&self, span: Span, ident: Ident, ty: P<ast::Ty>) -> ast::Param {
558         let arg_pat = self.pat_ident(span, ident);
559         ast::Param {
560             attrs: AttrVec::default(),
561             id: ast::DUMMY_NODE_ID,
562             pat: arg_pat,
563             span,
564             ty,
565             is_placeholder: false,
566         }
567     }
568
569     // `self` is unused but keep it as method for the convenience use.
570     pub fn fn_decl(&self, inputs: Vec<ast::Param>, output: ast::FnRetTy) -> P<ast::FnDecl> {
571         P(ast::FnDecl { inputs, output })
572     }
573
574     pub fn item(
575         &self,
576         span: Span,
577         name: Ident,
578         attrs: Vec<ast::Attribute>,
579         kind: ast::ItemKind,
580     ) -> P<ast::Item> {
581         // FIXME: Would be nice if our generated code didn't violate
582         // Rust coding conventions
583         P(ast::Item {
584             ident: name,
585             attrs,
586             id: ast::DUMMY_NODE_ID,
587             kind,
588             vis: ast::Visibility {
589                 span: span.shrink_to_lo(),
590                 kind: ast::VisibilityKind::Inherited,
591                 tokens: None,
592             },
593             span,
594             tokens: None,
595         })
596     }
597
598     pub fn item_static(
599         &self,
600         span: Span,
601         name: Ident,
602         ty: P<ast::Ty>,
603         mutbl: ast::Mutability,
604         expr: P<ast::Expr>,
605     ) -> P<ast::Item> {
606         self.item(span, name, Vec::new(), ast::ItemKind::Static(ty, mutbl, Some(expr)))
607     }
608
609     pub fn item_const(
610         &self,
611         span: Span,
612         name: Ident,
613         ty: P<ast::Ty>,
614         expr: P<ast::Expr>,
615     ) -> P<ast::Item> {
616         let def = ast::Defaultness::Final;
617         self.item(span, name, Vec::new(), ast::ItemKind::Const(def, ty, Some(expr)))
618     }
619
620     pub fn attribute(&self, mi: ast::MetaItem) -> ast::Attribute {
621         attr::mk_attr_outer(mi)
622     }
623
624     pub fn meta_word(&self, sp: Span, w: Symbol) -> ast::MetaItem {
625         attr::mk_word_item(Ident::new(w, sp))
626     }
627 }