syntax_ast_builder 0.1.0

A libsyntax ast builder
Build #11167 2016-08-07T23:12:32.908597+00:00
# rustc version
rustc 1.12.0-nightly (54c0dcfd6 2016-07-28)
# docs.rs version
cratesfyi 0.2.0 (5dbd676 2016-07-30)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading syntax_ast_builder v0.1.0
Documenting syntax_ast_builder v0.1.0
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs --crate-name syntax_ast_builder -o /home/cratesfyi/syntax_ast_builder-0.1.0/doc -L dependency=/home/cratesfyi/syntax_ast_builder-0.1.0/debug -L dependency=/home/cratesfyi/syntax_ast_builder-0.1.0/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:11:5: 11:36 error: unresolved import `syntax::owned_slice::OwnedSlice`. Could not find `owned_slice` in `syntax` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:11 use syntax::owned_slice::OwnedSlice;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:128:9: 128:25 error: unresolved name `token::get_ident` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:128         token::get_ident(*self)
^~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:134:9: 134:24 error: unresolved name `token::get_name` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:134         token::get_name(*self)
^~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:431:32: 431:40 error: type name `ast::Ty_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:431     pub fn build_ty(self, ty_: ast::Ty_) -> F::Result {
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:431:32: 431:40 help: no candidates by the name of `Ty_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:446:23: 446:39 error: failed to resolve. Could not find `Ty_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:446         self.build_ty(ast::Ty_::TyPath(qself, path))
^~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:613:31: 613:41 error: unresolved name `ast::TyTup` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:613         self.builder.build_ty(ast::TyTup(self.tys))
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:657:33: 657:42 error: type name `ast::Lit_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:657     pub fn build_lit(self, lit: ast::Lit_) -> F::Result {
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:657:33: 657:42 help: no candidates by the name of `Lit_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:665:20: 665:34 error: failed to resolve. Could not find `Sign` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:665         let sign = ast::Sign::new(value);
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:666:24: 666:35 error: unresolved name `ast::LitInt` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:666         self.build_lit(ast::LitInt(value as u64, ast::LitIntType::SignedIntLit(ty, sign)))
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:690:24: 690:35 error: unresolved name `ast::LitInt` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:690         self.build_lit(ast::LitInt(value, ast::LitIntType::UnsignedIntLit(ty)))
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:717:43: 717:57 error: unresolved name `ast::CookedStr` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:717         self.build_lit(ast::LitStr(value, ast::CookedStr))
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:717:24: 717:35 error: unresolved name `ast::LitStr` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:717         self.build_lit(ast::LitStr(value, ast::CookedStr))
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:755:36: 755:46 error: type name `ast::Expr_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:755     pub fn build_expr_(self, expr: ast::Expr_) -> F::Result {
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:755:36: 755:46 help: no candidates by the name of `Expr_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:765:26: 765:46 error: failed to resolve. Could not find `Expr_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:765         self.build_expr_(ast::Expr_::ExprPath(qself, path))
^~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:779:26: 779:45 error: failed to resolve. Could not find `Expr_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:779         self.build_expr_(ast::Expr_::ExprLit(lit))
^~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:833:26: 833:40 error: unresolved name `ast::ExprUnary` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:833         self.build_expr_(ast::ExprUnary(unop, expr))
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:837:26: 837:37 error: unresolved name `ast::UnUniq` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:837         self.build_unary(ast::UnUniq, expr)
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:841:26: 841:38 error: unresolved name `ast::UnDeref` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:841         self.build_unary(ast::UnDeref, expr)
^~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:845:26: 845:36 error: unresolved name `ast::UnNot` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:845         self.build_unary(ast::UnNot, expr)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:849:26: 849:36 error: unresolved name `ast::UnNeg` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:849         self.build_unary(ast::UnNeg, expr)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:860:20: 860:31 error: unresolved name `ast::UnUniq` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:860         self.unary(ast::UnUniq)
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:864:20: 864:32 error: unresolved name `ast::UnDeref` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:864         self.unary(ast::UnDeref)
^~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:868:20: 868:30 error: unresolved name `ast::UnNot` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:868         self.unary(ast::UnNot)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:872:20: 872:30 error: unresolved name `ast::UnNeg` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:872         self.unary(ast::UnNeg)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:877:16: 877:27 error: type name `ast::BinOp_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:877         binop: ast::BinOp_,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:877:16: 877:27 help: no candidates by the name of `BinOp_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:882:26: 882:48 error: failed to resolve. Could not find `Expr_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:882         self.build_expr_(ast::Expr_::ExprBinary(binop, lhs, rhs))
^~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:886:27: 886:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:886         self.build_binary(ast::BinOp_::BiAdd, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:890:27: 890:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:890         self.build_binary(ast::BinOp_::BiSub, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:894:27: 894:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:894         self.build_binary(ast::BinOp_::BiMul, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:898:27: 898:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:898         self.build_binary(ast::BinOp_::BiDiv, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:902:27: 902:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:902         self.build_binary(ast::BinOp_::BiRem, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:906:27: 906:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:906         self.build_binary(ast::BinOp_::BiAnd, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:910:27: 910:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:910         self.build_binary(ast::BinOp_::BiOr, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:914:27: 914:48 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:914         self.build_binary(ast::BinOp_::BiBitXor, lhs, rhs)
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:918:27: 918:48 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:918         self.build_binary(ast::BinOp_::BiBitAnd, lhs, rhs)
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:922:27: 922:47 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:922         self.build_binary(ast::BinOp_::BiBitOr, lhs, rhs)
^~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:926:27: 926:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:926         self.build_binary(ast::BinOp_::BiShl, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:930:27: 930:45 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:930         self.build_binary(ast::BinOp_::BiShr, lhs, rhs)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:934:27: 934:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:934         self.build_binary(ast::BinOp_::BiEq, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:938:27: 938:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:938         self.build_binary(ast::BinOp_::BiLt, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:942:27: 942:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:942         self.build_binary(ast::BinOp_::BiLe, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:946:27: 946:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:946         self.build_binary(ast::BinOp_::BiNe, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:950:27: 950:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:950         self.build_binary(ast::BinOp_::BiGe, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:954:27: 954:44 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:954         self.build_binary(ast::BinOp_::BiGt, lhs, rhs)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:957:32: 957:43 error: type name `ast::BinOp_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:957     pub fn binary(self, binop: ast::BinOp_) -> ExprBuilder<'a, ExprBinaryLhsBuilder<'a, F>> {
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:957:32: 957:43 help: no candidates by the name of `BinOp_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:965:21: 965:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:965         self.binary(ast::BinOp_::BiAdd)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:969:21: 969:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:969         self.binary(ast::BinOp_::BiSub)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:973:21: 973:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:973         self.binary(ast::BinOp_::BiMul)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:977:21: 977:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:977         self.binary(ast::BinOp_::BiDiv)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:981:21: 981:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:981         self.binary(ast::BinOp_::BiRem)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:985:21: 985:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:985         self.binary(ast::BinOp_::BiAnd)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:989:21: 989:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:989         self.binary(ast::BinOp_::BiOr)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:993:21: 993:42 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:993         self.binary(ast::BinOp_::BiBitXor)
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:997:21: 997:42 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:997         self.binary(ast::BinOp_::BiBitAnd)
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1001:21: 1001:41 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1001         self.binary(ast::BinOp_::BiBitOr)
^~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1005:21: 1005:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1005         self.binary(ast::BinOp_::BiShl)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1009:21: 1009:39 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1009         self.binary(ast::BinOp_::BiShr)
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1013:21: 1013:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1013         self.binary(ast::BinOp_::BiEq)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1017:21: 1017:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1017         self.binary(ast::BinOp_::BiLt)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1021:21: 1021:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1021         self.binary(ast::BinOp_::BiLe)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1025:21: 1025:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1025         self.binary(ast::BinOp_::BiNe)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1029:21: 1029:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1029         self.binary(ast::BinOp_::BiGe)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1033:21: 1033:38 error: failed to resolve. Could not find `BinOp_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1033         self.binary(ast::BinOp_::BiGt)
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1157:26: 1157:40 error: unresolved name `ast::ExprBlock` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1157         self.build_expr_(ast::ExprBlock(block))
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1182:12: 1182:23 error: type name `ast::BinOp_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1182     binop: ast::BinOp_,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1182:12: 1182:23 help: no candidates by the name of `BinOp_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1201:12: 1201:23 error: type name `ast::BinOp_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1201     binop: ast::BinOp_,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1201:12: 1201:23 help: no candidates by the name of `BinOp_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1242:34: 1242:46 error: unresolved name `ast::ExprTup` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1242         self.builder.build_expr_(ast::ExprTup(self.exprs))
^~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1304:34: 1304:47 error: unresolved name `ast::ExprCall` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1304         self.builder.build_expr_(ast::ExprCall(self.fn_, self.args))
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1385:34: 1385:53 error: unresolved name `ast::ExprMethodCall` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1385         self.builder.build_expr_(ast::ExprMethodCall(self.id, self.tys, self.args))
^~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1422:34: 1422:49 error: unresolved name `ast::ExprAddrOf` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1422         self.builder.build_expr_(ast::ExprAddrOf(self.mutability, expr))
^~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1458:34: 1458:48 error: unresolved name `ast::ExprParen` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1458         self.builder.build_expr_(ast::ExprParen(expr))
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1492:36: 1492:46 error: type name `ast::Stmt_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1492     pub fn build_stmt(self, stmt_: ast::Stmt_) -> F::Result {
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1492:36: 1492:46 help: no candidates by the name of `Stmt_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1506:21: 1506:47 error: failed to resolve. Could not find `LocalSource` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1506             source: ast::LocalSource::LocalLet,
^~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1509:38: 1509:59 error: failed to resolve. Could not find `Decl_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1509         let decl = respan(self.span, ast::Decl_::DeclLocal(P(local)));
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1511:25: 1511:38 error: unresolved name `ast::StmtDecl` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1511         self.build_stmt(ast::StmtDecl(P(decl), ast::DUMMY_NODE_ID))
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1526:25: 1526:45 error: failed to resolve. Could not find `Stmt_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1526         self.build_stmt(ast::Stmt_::StmtExpr(expr, ast::DUMMY_NODE_ID))
^~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1538:38: 1538:58 error: failed to resolve. Could not find `Decl_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1538         let decl = respan(self.span, ast::Decl_::DeclItem(item));
^~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1539:25: 1539:38 error: unresolved name `ast::StmtDecl` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1539         self.build_stmt(ast::StmtDecl(P(decl), ast::DUMMY_NODE_ID))
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1598:27: 1598:47 error: failed to resolve. Could not find `Stmt_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1598         self.0.build_stmt(ast::Stmt_::StmtSemi(expr, ast::DUMMY_NODE_ID))
^~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1732:34: 1732:43 error: type name `ast::Pat_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1732     pub fn build_pat(self, pat_: ast::Pat_) -> F::Result {
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1732:34: 1732:43 help: no candidates by the name of `Pat_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1741:43: 1741:74 error: failed to resolve. Could not find `PatWildKind` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1741         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildSingle))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1741:24: 1741:42 error: failed to resolve. Could not find `Pat_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1741         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildSingle))
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1745:43: 1745:73 error: failed to resolve. Could not find `PatWildKind` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1745         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildMulti))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1745:24: 1745:42 error: failed to resolve. Could not find `Pat_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1745         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildMulti))
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1753:24: 1753:43 error: failed to resolve. Could not find `Pat_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1753         self.build_pat(ast::Pat_::PatIdent(mode, id, sub))
^~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1834:32: 1834:50 error: failed to resolve. Could not find `Pat_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1834         self.builder.build_pat(ast::Pat_::PatEnum(self.path, pats))
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1859:26: 1859:43 error: failed to resolve. Could not find `Pat_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1859         self.0.build_pat(ast::Pat_::PatLit(expr))
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1883:32: 1883:43 error: unresolved name `ast::PatTup` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1883         self.builder.build_pat(ast::PatTup(self.pats))
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2039:21: 2039:37 error: unresolved name `ast::BindByValue` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2039                     ast::BindByValue(ast::Mutability::MutImmutable),
^~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2038:23: 2038:36 error: unresolved name `ast::PatIdent` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2038                 node: ast::PatIdent(
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2179:23: 2179:34 error: type name `ast::Method` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2179     where F: Invoke<P<ast::Method>>,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2179:23: 2179:34 help: no candidates by the name of `Method` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2238:23: 2238:34 error: type name `ast::Method` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2238     where F: Invoke<P<ast::Method>>,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2238:23: 2238:34 help: no candidates by the name of `Method` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2248:23: 2248:34 error: type name `ast::Method` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2248     where F: Invoke<P<ast::Method>>,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2248:23: 2248:34 help: no candidates by the name of `Method` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2266:23: 2266:34 error: type name `ast::Method` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2266     where F: Invoke<P<ast::Method>>,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2266:23: 2266:34 help: no candidates by the name of `Method` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2286:23: 2286:34 error: type name `ast::Method` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2286     where F: Invoke<P<ast::Method>>,
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2286:23: 2286:34 help: no candidates by the name of `Method` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2291:22: 2291:33 error: `ast::Method` does not name a structure [E0422]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2291         let method = ast::Method {
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2295:19: 2295:32 error: unresolved name `ast::MethDecl` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2295             node: ast::MethDecl(
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2363:36: 2363:54 error: type name `ast::ExplicitSelf_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2363     pub fn build_self(self, self_: ast::ExplicitSelf_) -> F::Result {
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2363:36: 2363:54 help: no candidates by the name of `ExplicitSelf_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2368:25: 2368:55 error: failed to resolve. Could not find `ExplicitSelf_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2368         self.build_self(ast::ExplicitSelf_::SelfStatic)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2373:25: 2373:54 error: failed to resolve. Could not find `ExplicitSelf_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2373         self.build_self(ast::ExplicitSelf_::SelfValue(ident))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2394:25: 2394:57 error: failed to resolve. Could not find `ExplicitSelf_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2394         self.build_self(ast::ExplicitSelf_::SelfExplicit(ty, ident))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2450:47: 2450:57 error: type name `ast::Item_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2450     pub fn build_item_<T>(self, id: T, item_: ast::Item_) -> F::Result
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2450:47: 2450:57 help: no candidates by the name of `Item_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2475:20: 2475:32 error: unresolved name `ast::ItemUse` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2475         let item = ast::ItemUse(P(respan(self.span, view_path)));
^~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2476:26: 2476:56 error: failed to resolve. Could not find `special_idents` in `syntax::parse::token` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2476         self.build_item_(token::special_idents::invalid, item)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2576:43: 2576:61 error: failed to resolve. Could not find `Item_` in `syntax::ast` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2576         self.builder.build_item_(self.id, ast::Item_::ItemFn(
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2627:20: 2627:34 error: unresolved name `ast::AttrOuter` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2627             style: ast::AttrOuter,
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2634:41: 2634:55 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2634     pub fn build_meta_item_(self, item: ast::MetaItem_) -> F::Result {
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2634:41: 2634:55 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2642:31: 2642:44 error: unresolved name `ast::MetaWord` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2642         self.build_meta_item_(ast::MetaWord(word.into_interned_string()))
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2714:20: 2714:34 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2714 impl<'a, F> Invoke<ast::MetaItem_> for AttrBuilder<'a, F>
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2714:20: 2714:34 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2719:27: 2719:41 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2719     fn invoke(self, item: ast::MetaItem_) -> F::Result {
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2719:27: 2719:41 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2762:36: 2762:50 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2762         where I: IntoIterator<Item=ast::MetaItem_>,
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2762:36: 2762:50 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2774:40: 2774:54 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2774     pub fn with_meta_item_(self, item: ast::MetaItem_) -> Self {
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2774:40: 2774:54 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2784:47: 2784:60 error: unresolved name `ast::MetaWord` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2784         self.with_meta_items_(iter.map(|word| ast::MetaWord(word.into_interned_string())))
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2790:30: 2790:43 error: unresolved name `ast::MetaWord` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2790         self.with_meta_item_(ast::MetaWord(word.into_interned_string()))
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2809:38: 2809:51 error: unresolved name `ast::MetaList` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2809         let item = respan(self.span, ast::MetaList(self.name, self.items));
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2824:20: 2824:34 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2824 impl<'a, F> Invoke<ast::MetaItem_> for AttrListBuilder<'a, F>
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2824:20: 2824:34 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2829:27: 2829:41 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2829     fn invoke(self, item: ast::MetaItem_) -> Self {
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2829:27: 2829:41 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2841:16: 2841:30 error: type name `ast::MetaItem_` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2841 impl<F: Invoke<ast::MetaItem_>> Invoke<P<ast::Lit>> for AttrNameValueBuilder<F> {
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2841:16: 2841:30 help: no candidates by the name of `MetaItem_` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2845:20: 2845:38 error: unresolved name `ast::MetaNameValue` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2845         let item = ast::MetaNameValue(self.name, (*value).clone());
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:102:1: 106:2 error: conflicting implementations of trait `IntoPath` for type `syntax::ast::Ident`: [E0119]
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:102 impl<'a, I, T> IntoPath for I where I: IntoIterator<Item=T>, T: ToIdent {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:90:1: 94:2 note: conflicting implementation is here: 
.cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:90 impl<'a> IntoPath for ast::Ident {
^
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `syntax_ast_builder v0.1.0`, intermediate artifacts can be found at `/home/cratesfyi/syntax_ast_builder-0.1.0`,
cause: ChainedError {
error: Could not document `syntax_ast_builder`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs --crate-name syntax_ast_builder -o /home/cratesfyi/syntax_ast_builder-0.1.0/doc -L dependency=/home/cratesfyi/syntax_ast_builder-0.1.0/debug -L dependency=/home/cratesfyi/syntax_ast_builder-0.1.0/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.