syntax_ast_builder 0.1.0

A libsyntax ast builder
Build #53149 2017-06-03T05:29:23.708245+00:00
# rustc version
rustc 1.19.0-dev (28a93c1f4 2017-05-31)# docs.rs version
cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)# 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 --crate-name syntax_ast_builder .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0432]: unresolved import `syntax::owned_slice::OwnedSlice`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:11:5
|
11 | use syntax::owned_slice::OwnedSlice;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `owned_slice` in `syntax`

error[E0425]: cannot find function `intern` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:26:16
|
26 |         token::intern(name)
|                ^^^^^^ not found in `token`

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:111:46
|
111 |     fn into_interned_string(&self) -> token::InternedString;
|                                              ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:114:34
|
114 | impl ToInternedString for token::InternedString {
|                                  ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:115:46
|
115 |     fn into_interned_string(&self) -> token::InternedString {
|                                              ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:121:46
|
121 |     fn into_interned_string(&self) -> token::InternedString {
|                                              ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0425]: cannot find function `intern_and_get_ident` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:122:16
|
122 |         token::intern_and_get_ident(self)
|                ^^^^^^^^^^^^^^^^^^^^ not found in `token`

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:127:46
|
127 |     fn into_interned_string(&self) -> token::InternedString {
|                                              ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0425]: cannot find function `get_ident` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:128:16
|
128 |         token::get_ident(*self)
|                ^^^^^^^^^ not found in `token`

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:133:46
|
133 |     fn into_interned_string(&self) -> token::InternedString {
|                                              ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0425]: cannot find function `get_name` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:134:16
|
134 |         token::get_name(*self)
|                ^^^^^^^^ not found in `token`

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:139:46
|
139 |     fn into_interned_string(&self) -> token::InternedString {
|                                              ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0412]: cannot find type `Ty_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:431:37
|
431 |     pub fn build_ty(self, ty_: ast::Ty_) -> F::Result {
|                                     ^^^ did you mean `Ty`?

error[E0433]: failed to resolve. Could not find `Ty_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:446:23
|
446 |         self.build_ty(ast::Ty_::TyPath(qself, path))
|                       ^^^^^^^^^^^^^^^^ Could not find `Ty_` in `ast`

error[E0425]: cannot find function `TyTup` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:613:36
|
613 |         self.builder.build_ty(ast::TyTup(self.tys))
|                                    ^^^^^ not found in `ast`

error[E0412]: cannot find type `Lit_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:657:38
|
657 |     pub fn build_lit(self, lit: ast::Lit_) -> F::Result {
|                                      ^^^^ did you mean `Lit`?

error[E0433]: failed to resolve. Could not find `Sign` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:665:20
|
665 |         let sign = ast::Sign::new(value);
|                    ^^^^^^^^^^^^^^ Could not find `Sign` in `ast`

error[E0425]: cannot find function `LitInt` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:666:29
|
666 |         self.build_lit(ast::LitInt(value as u64, ast::LitIntType::SignedIntLit(ty, sign)))
|                             ^^^^^^ not found in `ast`

error[E0425]: cannot find function `LitInt` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:690:29
|
690 |         self.build_lit(ast::LitInt(value, ast::LitIntType::UnsignedIntLit(ty)))
|                             ^^^^^^ not found in `ast`

error[E0425]: cannot find function `LitStr` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:717:29
|
717 |         self.build_lit(ast::LitStr(value, ast::CookedStr))
|                             ^^^^^^ not found in `ast`

error[E0425]: cannot find value `CookedStr` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:717:48
|
717 |         self.build_lit(ast::LitStr(value, ast::CookedStr))
|                                                ^^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `Expr_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:755:41
|
755 |     pub fn build_expr_(self, expr: ast::Expr_) -> F::Result {
|                                         ^^^^^ did you mean `Expr`?

error[E0433]: failed to resolve. Could not find `Expr_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:765:26
|
765 |         self.build_expr_(ast::Expr_::ExprPath(qself, path))
|                          ^^^^^^^^^^^^^^^^^^^^ Could not find `Expr_` in `ast`

error[E0433]: failed to resolve. Could not find `Expr_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:779:26
|
779 |         self.build_expr_(ast::Expr_::ExprLit(lit))
|                          ^^^^^^^^^^^^^^^^^^^ Could not find `Expr_` in `ast`

error[E0425]: cannot find function `ExprUnary` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:833:31
|
833 |         self.build_expr_(ast::ExprUnary(unop, expr))
|                               ^^^^^^^^^ not found in `ast`

error[E0425]: cannot find value `UnUniq` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:837:31
|
837 |         self.build_unary(ast::UnUniq, expr)
|                               ^^^^^^ not found in `ast`

error[E0425]: cannot find value `UnDeref` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:841:31
|
841 |         self.build_unary(ast::UnDeref, expr)
|                               ^^^^^^^ not found in `ast`

error[E0425]: cannot find value `UnNot` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:845:31
|
845 |         self.build_unary(ast::UnNot, expr)
|                               ^^^^^ not found in `ast`

error[E0425]: cannot find value `UnNeg` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:849:31
|
849 |         self.build_unary(ast::UnNeg, expr)
|                               ^^^^^ not found in `ast`

error[E0425]: cannot find value `UnUniq` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:860:25
|
860 |         self.unary(ast::UnUniq)
|                         ^^^^^^ not found in `ast`

error[E0425]: cannot find value `UnDeref` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:864:25
|
864 |         self.unary(ast::UnDeref)
|                         ^^^^^^^ not found in `ast`

error[E0425]: cannot find value `UnNot` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:868:25
|
868 |         self.unary(ast::UnNot)
|                         ^^^^^ not found in `ast`

error[E0425]: cannot find value `UnNeg` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:872:25
|
872 |         self.unary(ast::UnNeg)
|                         ^^^^^ not found in `ast`

error[E0412]: cannot find type `BinOp_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:877:21
|
877 |         binop: ast::BinOp_,
|                     ^^^^^^ did you mean `BinOp`?

error[E0433]: failed to resolve. Could not find `Expr_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:882:26
|
882 |         self.build_expr_(ast::Expr_::ExprBinary(binop, lhs, rhs))
|                          ^^^^^^^^^^^^^^^^^^^^^^ Could not find `Expr_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:886:27
|
886 |         self.build_binary(ast::BinOp_::BiAdd, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:890:27
|
890 |         self.build_binary(ast::BinOp_::BiSub, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:894:27
|
894 |         self.build_binary(ast::BinOp_::BiMul, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:898:27
|
898 |         self.build_binary(ast::BinOp_::BiDiv, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:902:27
|
902 |         self.build_binary(ast::BinOp_::BiRem, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:906:27
|
906 |         self.build_binary(ast::BinOp_::BiAnd, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:910:27
|
910 |         self.build_binary(ast::BinOp_::BiOr, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:914:27
|
914 |         self.build_binary(ast::BinOp_::BiBitXor, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:918:27
|
918 |         self.build_binary(ast::BinOp_::BiBitAnd, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:922:27
|
922 |         self.build_binary(ast::BinOp_::BiBitOr, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:926:27
|
926 |         self.build_binary(ast::BinOp_::BiShl, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:930:27
|
930 |         self.build_binary(ast::BinOp_::BiShr, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:934:27
|
934 |         self.build_binary(ast::BinOp_::BiEq, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:938:27
|
938 |         self.build_binary(ast::BinOp_::BiLt, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:942:27
|
942 |         self.build_binary(ast::BinOp_::BiLe, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:946:27
|
946 |         self.build_binary(ast::BinOp_::BiNe, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:950:27
|
950 |         self.build_binary(ast::BinOp_::BiGe, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:954:27
|
954 |         self.build_binary(ast::BinOp_::BiGt, lhs, rhs)
|                           ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0412]: cannot find type `BinOp_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:957:37
|
957 |     pub fn binary(self, binop: ast::BinOp_) -> ExprBuilder<'a, ExprBinaryLhsBuilder<'a, F>> {
|                                     ^^^^^^ did you mean `BinOp`?

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:965:21
|
965 |         self.binary(ast::BinOp_::BiAdd)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:969:21
|
969 |         self.binary(ast::BinOp_::BiSub)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:973:21
|
973 |         self.binary(ast::BinOp_::BiMul)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:977:21
|
977 |         self.binary(ast::BinOp_::BiDiv)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:981:21
|
981 |         self.binary(ast::BinOp_::BiRem)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:985:21
|
985 |         self.binary(ast::BinOp_::BiAnd)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:989:21
|
989 |         self.binary(ast::BinOp_::BiOr)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:993:21
|
993 |         self.binary(ast::BinOp_::BiBitXor)
|                     ^^^^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:997:21
|
997 |         self.binary(ast::BinOp_::BiBitAnd)
|                     ^^^^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1001:21
|
1001 |         self.binary(ast::BinOp_::BiBitOr)
|                     ^^^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1005:21
|
1005 |         self.binary(ast::BinOp_::BiShl)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1009:21
|
1009 |         self.binary(ast::BinOp_::BiShr)
|                     ^^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1013:21
|
1013 |         self.binary(ast::BinOp_::BiEq)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1017:21
|
1017 |         self.binary(ast::BinOp_::BiLt)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1021:21
|
1021 |         self.binary(ast::BinOp_::BiLe)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1025:21
|
1025 |         self.binary(ast::BinOp_::BiNe)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1029:21
|
1029 |         self.binary(ast::BinOp_::BiGe)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0433]: failed to resolve. Could not find `BinOp_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1033:21
|
1033 |         self.binary(ast::BinOp_::BiGt)
|                     ^^^^^^^^^^^^^^^^^ Could not find `BinOp_` in `ast`

error[E0425]: cannot find function `ExprBlock` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1157:31
|
1157 |         self.build_expr_(ast::ExprBlock(block))
|                               ^^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `BinOp_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1182:17
|
1182 |     binop: ast::BinOp_,
|                 ^^^^^^ did you mean `BinOp`?

error[E0412]: cannot find type `BinOp_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1201:17
|
1201 |     binop: ast::BinOp_,
|                 ^^^^^^ did you mean `BinOp`?

error[E0425]: cannot find function `ExprTup` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1242:39
|
1242 |         self.builder.build_expr_(ast::ExprTup(self.exprs))
|                                       ^^^^^^^ not found in `ast`

error[E0425]: cannot find function `ExprCall` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1304:39
|
1304 |         self.builder.build_expr_(ast::ExprCall(self.fn_, self.args))
|                                       ^^^^^^^^ not found in `ast`

error[E0425]: cannot find function `ExprMethodCall` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1385:39
|
1385 |         self.builder.build_expr_(ast::ExprMethodCall(self.id, self.tys, self.args))
|                                       ^^^^^^^^^^^^^^ not found in `ast`

error[E0425]: cannot find function `ExprAddrOf` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1422:39
|
1422 |         self.builder.build_expr_(ast::ExprAddrOf(self.mutability, expr))
|                                       ^^^^^^^^^^ not found in `ast`

error[E0425]: cannot find function `ExprParen` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1458:39
|
1458 |         self.builder.build_expr_(ast::ExprParen(expr))
|                                       ^^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `Stmt_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1492:41
|
1492 |     pub fn build_stmt(self, stmt_: ast::Stmt_) -> F::Result {
|                                         ^^^^^ did you mean `Stmt`?

error[E0433]: failed to resolve. Could not find `LocalSource` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1506:21
|
1506 |             source: ast::LocalSource::LocalLet,
|                     ^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `LocalSource` in `ast`

error[E0433]: failed to resolve. Could not find `Decl_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1509:38
|
1509 |         let decl = respan(self.span, ast::Decl_::DeclLocal(P(local)));
|                                      ^^^^^^^^^^^^^^^^^^^^^ Could not find `Decl_` in `ast`

error[E0425]: cannot find function `StmtDecl` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1511:30
|
1511 |         self.build_stmt(ast::StmtDecl(P(decl), ast::DUMMY_NODE_ID))
|                              ^^^^^^^^ not found in `ast`

error[E0433]: failed to resolve. Could not find `Stmt_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1526:25
|
1526 |         self.build_stmt(ast::Stmt_::StmtExpr(expr, ast::DUMMY_NODE_ID))
|                         ^^^^^^^^^^^^^^^^^^^^ Could not find `Stmt_` in `ast`

error[E0433]: failed to resolve. Could not find `Decl_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1538:38
|
1538 |         let decl = respan(self.span, ast::Decl_::DeclItem(item));
|                                      ^^^^^^^^^^^^^^^^^^^^ Could not find `Decl_` in `ast`

error[E0425]: cannot find function `StmtDecl` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1539:30
|
1539 |         self.build_stmt(ast::StmtDecl(P(decl), ast::DUMMY_NODE_ID))
|                              ^^^^^^^^ not found in `ast`

error[E0433]: failed to resolve. Could not find `Stmt_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1598:27
|
1598 |         self.0.build_stmt(ast::Stmt_::StmtSemi(expr, ast::DUMMY_NODE_ID))
|                           ^^^^^^^^^^^^^^^^^^^^ Could not find `Stmt_` in `ast`

error[E0412]: cannot find type `Pat_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1732:39
|
1732 |     pub fn build_pat(self, pat_: ast::Pat_) -> F::Result {
|                                       ^^^^ did you mean `Pat`?

error[E0433]: failed to resolve. Could not find `Pat_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1741:24
|
1741 |         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildSingle))
|                        ^^^^^^^^^^^^^^^^^^ Could not find `Pat_` in `ast`

error[E0433]: failed to resolve. Could not find `PatWildKind` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1741:43
|
1741 |         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildSingle))
|                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `PatWildKind` in `ast`

error[E0433]: failed to resolve. Could not find `Pat_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1745:24
|
1745 |         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildMulti))
|                        ^^^^^^^^^^^^^^^^^^ Could not find `Pat_` in `ast`

error[E0433]: failed to resolve. Could not find `PatWildKind` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1745:43
|
1745 |         self.build_pat(ast::Pat_::PatWild(ast::PatWildKind::PatWildMulti))
|                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `PatWildKind` in `ast`

error[E0433]: failed to resolve. Could not find `Pat_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1753:24
|
1753 |         self.build_pat(ast::Pat_::PatIdent(mode, id, sub))
|                        ^^^^^^^^^^^^^^^^^^^ Could not find `Pat_` in `ast`

error[E0433]: failed to resolve. Could not find `Pat_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1834:32
|
1834 |         self.builder.build_pat(ast::Pat_::PatEnum(self.path, pats))
|                                ^^^^^^^^^^^^^^^^^^ Could not find `Pat_` in `ast`

error[E0433]: failed to resolve. Could not find `Pat_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1859:26
|
1859 |         self.0.build_pat(ast::Pat_::PatLit(expr))
|                          ^^^^^^^^^^^^^^^^^ Could not find `Pat_` in `ast`

error[E0425]: cannot find function `PatTup` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:1883:37
|
1883 |         self.builder.build_pat(ast::PatTup(self.pats))
|                                     ^^^^^^ not found in `ast`

error[E0425]: cannot find function `PatIdent` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2038:28
|
2038 |                 node: ast::PatIdent(
|                            ^^^^^^^^ not found in `ast`

error[E0425]: cannot find function `BindByValue` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2039:26
|
2039 |                     ast::BindByValue(ast::Mutability::MutImmutable),
|                          ^^^^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `Method` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2179:28
|
2179 |     where F: Invoke<P<ast::Method>>,
|                            ^^^^^^ not found in `ast`
|
= help: there is an enum variant `syntax::ast::ImplItemKind::Method`, did you mean to use `syntax::ast::ImplItemKind`?
= help: there is an enum variant `syntax::ast::TraitItemKind::Method`, did you mean to use `syntax::ast::TraitItemKind`?
= help: there is an enum variant `syntax::visit::FnKind::Method`, did you mean to use `syntax::visit::FnKind`?

error[E0412]: cannot find type `Method` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2238:28
|
2238 |     where F: Invoke<P<ast::Method>>,
|                            ^^^^^^ not found in `ast`
|
= help: there is an enum variant `syntax::ast::ImplItemKind::Method`, did you mean to use `syntax::ast::ImplItemKind`?
= help: there is an enum variant `syntax::ast::TraitItemKind::Method`, did you mean to use `syntax::ast::TraitItemKind`?
= help: there is an enum variant `syntax::visit::FnKind::Method`, did you mean to use `syntax::visit::FnKind`?

error[E0412]: cannot find type `Method` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2248:28
|
2248 |     where F: Invoke<P<ast::Method>>,
|                            ^^^^^^ not found in `ast`
|
= help: there is an enum variant `syntax::ast::ImplItemKind::Method`, did you mean to use `syntax::ast::ImplItemKind`?
= help: there is an enum variant `syntax::ast::TraitItemKind::Method`, did you mean to use `syntax::ast::TraitItemKind`?
= help: there is an enum variant `syntax::visit::FnKind::Method`, did you mean to use `syntax::visit::FnKind`?

error[E0412]: cannot find type `Method` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2266:28
|
2266 |     where F: Invoke<P<ast::Method>>,
|                            ^^^^^^ not found in `ast`
|
= help: there is an enum variant `syntax::ast::ImplItemKind::Method`, did you mean to use `syntax::ast::ImplItemKind`?
= help: there is an enum variant `syntax::ast::TraitItemKind::Method`, did you mean to use `syntax::ast::TraitItemKind`?
= help: there is an enum variant `syntax::visit::FnKind::Method`, did you mean to use `syntax::visit::FnKind`?

error[E0412]: cannot find type `Method` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2286:28
|
2286 |     where F: Invoke<P<ast::Method>>,
|                            ^^^^^^ not found in `ast`
|
= help: there is an enum variant `syntax::ast::ImplItemKind::Method`, did you mean to use `syntax::ast::ImplItemKind`?
= help: there is an enum variant `syntax::ast::TraitItemKind::Method`, did you mean to use `syntax::ast::TraitItemKind`?
= help: there is an enum variant `syntax::visit::FnKind::Method`, did you mean to use `syntax::visit::FnKind`?

error[E0422]: cannot find struct, variant or union type `Method` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2291:27
|
2291 |         let method = ast::Method {
|                           ^^^^^^ not found in `ast`
|
help: possible candidates are found in other modules, you can import them into scope
| use syntax::ast::ImplItemKind::Method;
| use syntax::ast::TraitItemKind::Method;
| use syntax::visit::FnKind::Method;

error[E0425]: cannot find function `MethDecl` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2295:24
|
2295 |             node: ast::MethDecl(
|                        ^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `ExplicitSelf_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2363:41
|
2363 |     pub fn build_self(self, self_: ast::ExplicitSelf_) -> F::Result {
|                                         ^^^^^^^^^^^^^ did you mean `ExplicitSelf`?

error[E0433]: failed to resolve. Could not find `ExplicitSelf_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2368:25
|
2368 |         self.build_self(ast::ExplicitSelf_::SelfStatic)
|                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `ExplicitSelf_` in `ast`

error[E0433]: failed to resolve. Could not find `ExplicitSelf_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2373:25
|
2373 |         self.build_self(ast::ExplicitSelf_::SelfValue(ident))
|                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `ExplicitSelf_` in `ast`

error[E0433]: failed to resolve. Could not find `ExplicitSelf_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2394:25
|
2394 |         self.build_self(ast::ExplicitSelf_::SelfExplicit(ty, ident))
|                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `ExplicitSelf_` in `ast`

error[E0412]: cannot find type `Item_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2450:52
|
2450 |     pub fn build_item_<T>(self, id: T, item_: ast::Item_) -> F::Result
|                                                    ^^^^^ did you mean `Item`?

error[E0425]: cannot find function `ItemUse` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2475:25
|
2475 |         let item = ast::ItemUse(P(respan(self.span, view_path)));
|                         ^^^^^^^ not found in `ast`

error[E0433]: failed to resolve. Could not find `special_idents` in `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2476:26
|
2476 |         self.build_item_(token::special_idents::invalid, item)
|                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `special_idents` in `token`

error[E0433]: failed to resolve. Could not find `Item_` in `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2576:43
|
2576 |         self.builder.build_item_(self.id, ast::Item_::ItemFn(
|                                           ^^^^^^^^^^^^^^^^^^ Could not find `Item_` in `ast`

error[E0422]: cannot find struct, variant or union type `Attribute_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2625:43
|
2625 |         let attr = respan(self.span, ast::Attribute_ {
|                                           ^^^^^^^^^^ did you mean `Attribute`?

error[E0425]: cannot find value `AttrOuter` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2627:25
|
2627 |             style: ast::AttrOuter,
|                         ^^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2634:46
|
2634 |     pub fn build_meta_item_(self, item: ast::MetaItem_) -> F::Result {
|                                              ^^^^^^^^^ did you mean `MetaItem`?

error[E0425]: cannot find function `MetaWord` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2642:36
|
2642 |         self.build_meta_item_(ast::MetaWord(word.into_interned_string()))
|                                    ^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2714:25
|
2714 | impl<'a, F> Invoke<ast::MetaItem_> for AttrBuilder<'a, F>
|                         ^^^^^^^^^ did you mean `MetaItem`?

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2719:32
|
2719 |     fn invoke(self, item: ast::MetaItem_) -> F::Result {
|                                ^^^^^^^^^ did you mean `MetaItem`?

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2730:18
|
2730 |     name: token::InternedString,
|                  ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2762:41
|
2762 |         where I: IntoIterator<Item=ast::MetaItem_>,
|                                         ^^^^^^^^^ did you mean `MetaItem`?

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2774:45
|
2774 |     pub fn with_meta_item_(self, item: ast::MetaItem_) -> Self {
|                                             ^^^^^^^^^ did you mean `MetaItem`?

error[E0425]: cannot find function `MetaWord` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2784:52
|
2784 |         self.with_meta_items_(iter.map(|word| ast::MetaWord(word.into_interned_string())))
|                                                    ^^^^^^^^ not found in `ast`

error[E0425]: cannot find function `MetaWord` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2790:35
|
2790 |         self.with_meta_item_(ast::MetaWord(word.into_interned_string()))
|                                   ^^^^^^^^ not found in `ast`

error[E0425]: cannot find function `MetaList` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2809:43
|
2809 |         let item = respan(self.span, ast::MetaList(self.name, self.items));
|                                           ^^^^^^^^ not found in `ast`

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2824:25
|
2824 | impl<'a, F> Invoke<ast::MetaItem_> for AttrListBuilder<'a, F>
|                         ^^^^^^^^^ did you mean `MetaItem`?

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2829:32
|
2829 |     fn invoke(self, item: ast::MetaItem_) -> Self {
|                                ^^^^^^^^^ did you mean `MetaItem`?

error[E0412]: cannot find type `InternedString` in module `token`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2838:18
|
2838 |     name: token::InternedString,
|                  ^^^^^^^^^^^^^^ not found in `token`
|
help: possible candidate is found in another module, you can import it into scope
| use syntax::symbol::InternedString;

error[E0412]: cannot find type `MetaItem_` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2841:21
|
2841 | impl<F: Invoke<ast::MetaItem_>> Invoke<P<ast::Lit>> for AttrNameValueBuilder<F> {
|                     ^^^^^^^^^ did you mean `MetaItem`?

error[E0425]: cannot find function `MetaNameValue` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:2845:25
|
2845 |         let item = ast::MetaNameValue(self.name, (*value).clone());
|                         ^^^^^^^^^^^^^ not found in `ast`

error[E0119]: conflicting implementations of trait `IntoPath` for type `syntax::ast::Path`:
--> .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs:102:1
|
84  | / impl IntoPath for ast::Path {
85  | |     fn into_path(self, _ctx: &Ctx) -> ast::Path {
86  | |         self
87  | |     }
88  | | }
| |_- first implementation here
...
102 | / impl<'a, I, T> IntoPath for I where I: IntoIterator<Item=T>, T: ToIdent {
103 | |     fn into_path(self, ctx: &Ctx) -> ast::Path {
104 | |         PathBuilder::new(ctx).ids(self).build()
105 | |     }
106 | | }
| |_^ conflicting implementation for `syntax::ast::Path`

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'ChainedError {
error: Could not document `syntax_ast_builder`.,
cause: process didn't exit successfully: `rustdoc --crate-name syntax_ast_builder .cargo/registry/src/github.com-1ecc6299db9ec823/syntax_ast_builder-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.