summary refs log tree commit diff
path: root/src/librustc_resolve/lib.rs
AgeCommit message (Expand)AuthorLines
2016-07-01Add the `after_expand` entry point between import resolution and the rest of ...Jeffrey Seyfried-12/+0
2016-06-29Rollup merge of #34542 - jseyfried:fix_recursive_modules, r=nrcManish Goregaokar-1/+3
2016-06-28Fix infinite loop on recursive module exports in an extern crateJeffrey Seyfried-1/+3
2016-06-28groundwork: create the `Resolver` earlier in phase 2Jeffrey Seyfried-7/+4
2016-06-28groundwork: refactor the interface that `resolve` exposes to `driver`Jeffrey Seyfried-45/+30
2016-06-28groundwork: use `resolve_identifier` instead of `resolve_path` to classify id...Jeffrey Seyfried-5/+6
2016-06-26Rollup merge of #34316 - jseyfried:refactor_ast_stmt, r=eddybJeffrey Seyfried-1/+1
2016-06-26Rollup merge of #33943 - jseyfried:libsyntax_cleanup, r=nrcJeffrey Seyfried-4/+4
2016-06-25Rollup merge of #34403 - jonathandturner:move_liberror, r=alexcrichtonJeffrey Seyfried-7/+10
2016-06-25Rollup merge of #34368 - petrochenkov:astqpath, r=ManishearthJeffrey Seyfried-11/+2
2016-06-25Rollup merge of #34213 - josephDunne:trait_item_macros, r=jseyfriedJeffrey Seyfried-0/+1
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-7/+10
2016-06-20Merge PatKind::QPath into PatKind::Path in ASTVadim Petrochenkov-11/+2
2016-06-18Remove unused functions calls and unused E0406Guillaume Gomez-32/+0
2016-06-17Rename `ast::ExprKind::Again` -> `ast::ExprKind::Continue`Jeffrey Seyfried-1/+1
2016-06-14Remove the type parameter from `syntax::visit::Visitor`Jeffrey Seyfried-4/+4
2016-06-13Add support for macro expansion inside trait itemsJoseph Dunne-0/+1
2016-06-10Address review comments + fix rebaseVadim Petrochenkov-25/+25
2016-06-10Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos...Vadim Petrochenkov-36/+27
2016-06-10Move the hack with fake partial resolution for <A>::B from typeck to resolveVadim Petrochenkov-83/+37
2016-06-10resolve: Rewrite resolve_patternVadim Petrochenkov-402/+279
2016-06-07Refactor away the prelude injection passJeffrey Seyfried-12/+20
2016-06-06Refactor away method `resolve_name_in_lexical_scope` of `ModuleS`Jeffrey Seyfried-22/+19
2016-06-02Auto merge of #33878 - GuillaumeGomez:improve_helps, r=jonathandturnerbors-7/+15
2016-06-02Improve help messages for E0425ggomez-7/+15
2016-05-30librustc_resolve: make sure pattern def gets recorded if `resolve_path` retur...Daan Sprenkels-7/+10
2016-05-27Rollup merge of #33644 - petrochenkov:selfast, r=nrcManish Goregaokar-8/+4
2016-05-27Rollup merge of #33639 - petrochenkov:dotdot, r=nmatsakisManish Goregaokar-1/+1
2016-05-27Rollup merge of #33351 - birkenfeld:loop-label-spans, r=pnkfelixManish Goregaokar-3/+3
2016-05-26Implement `..` in tuple (struct) patternsVadim Petrochenkov-1/+1
2016-05-25Fix rebaseVadim Petrochenkov-8/+4
2016-05-24Auto merge of #33615 - GuillaumeGomez:field_static_method, r=pnkfelixbors-22/+64
2016-05-24syntax/hir: give loop labels a spanGeorg Brandl-3/+3
2016-05-23Don't suggest using fields in a static methodggomez-22/+64
2016-05-18ignore dep-graph in resolve and lower_crateNiko Matsakis-0/+1
2016-05-16lowering: Rename identifiers only when necessaryVadim Petrochenkov-0/+4
2016-05-16Remove hir::IdentVadim Petrochenkov-1/+1
2016-05-15Auto merge of #33505 - petrochenkov:self, r=nrcbors-1/+0
2016-05-15Auto merge of #33619 - jonathandturner:improve_structured_errors, r=nikomatsakisbors-27/+48
2016-05-14Remove ExplicitSelf from HIRVadim Petrochenkov-1/+0
2016-05-14Rollup merge of #33572 - nagisa:assoc-const-types, r=eddybManish Goregaokar-3/+1
2016-05-13Address nitJonathan Turner-1/+1
2016-05-12Update errors to use new error formatJonathan Turner-21/+22
2016-05-12Updating a few more errors with labelsJonathan Turner-26/+46
2016-05-12re-introduce a cache for ast-ty-to-tyNiko Matsakis-0/+2
2016-05-12Do not use const Rib for associated constantsSimonas Kazlauskas-3/+1
2016-05-11rustc: Remove the unnecessary ast_ty_to_ty_cache.Eduard Burtescu-1/+1
2016-05-10Auto merge of #33471 - birkenfeld:issue-33464, r=jseyfriedbors-4/+1
2016-05-10resolve: do not modify span of non-importable nameGeorg Brandl-4/+1
2016-05-09Auto merge of #33443 - jseyfried:resolve_ast, r=nrcbors-273/+303