Jeffrey Seyfried
1cded8472e
Remove trait_item_map
, clean up resolver.with_type_parameter_rib()
.
2017-05-25 05:51:12 +00:00
Jeffrey Seyfried
2a1d2edb82
Declarative macros 2.0 without hygiene.
2017-05-25 05:51:06 +00:00
Oliver Schneider
a54bbf2cb3
Weave the span of an import through the resolve code
2017-05-12 11:21:11 +02:00
Oliver Schneider
9d51d6bc30
Fix tidy issues
2017-05-10 13:58:41 +02:00
Oliver Schneider
e2f781c7ea
Example usage of multiple suggestions
2017-05-10 13:20:27 +02:00
Alex Burka
e0cd76674d
feature gate :vis matcher
2017-04-15 19:06:58 +00:00
A.J. Gardner
768e902941
First attempt at global_asm! macro
2017-04-12 19:12:49 -05:00
Jeffrey Seyfried
1979f96549
Move syntax::ext::hygiene
to syntax_pos::hygiene
.
2017-03-29 00:41:08 +00:00
Jeffrey Seyfried
d64d3814c4
Rename builtin
=> global
.
2017-03-24 21:06:01 +00:00
Jeffrey Seyfried
678e882ce2
Check for conflicts between macros 1.0 exports (#[macro_export]
, #[macro_reexport]
)
...
and macros 2.0 exports (`pub use` macro re-exports and `pub macro` (once implemented)
at the crate root.
2017-03-21 16:23:18 -04:00
Jeffrey Seyfried
cb96adea15
Fix regression when include!()
ing a macro_rules!
containing a $crate::
path.
2017-03-17 22:20:41 +00:00
Jeffrey Seyfried
8c98996934
Avoid using Mark
and Invocation
for macro defs.
2017-03-10 08:08:32 -08:00
Jeffrey Seyfried
212b6c2550
Refactor out ast::ItemKind::MacroDef
.
2017-03-10 08:08:32 -08:00
Jeffrey Seyfried
9fe7d3ffe4
Fix const expression macro invocations.
2017-03-05 23:58:19 +00:00
Jeffrey Seyfried
f6eaaf350e
Integrate TokenStream
.
2017-03-03 02:15:37 +00:00
Eduard Burtescu
b5c4244c6c
rustc: introduce a query system for type information in ty::maps.
2017-02-25 17:07:59 +02:00
Josh Driver
da6dc5331f
Add macro suggestions for macros imported with use
...
This commit searchs modules for macro suggestions.
It also removes imported macro_rules from macro_names,
and adds more corner case checks for which macros
should be suggested in specific contexts.
2017-02-23 20:28:35 +10:30
Josh Driver
4ecdc68153
Move MacroKind into Def::Macro
2017-02-23 20:12:33 +10:30
Josh Driver
0a7380d7fc
Rename CustomDerive to ProcMacroDerive for macros 1.1
2017-02-05 09:31:02 +10:30
Vadim Petrochenkov
d38a8ad488
Improve diagnostics for inaccessible constructors
2017-01-29 02:57:14 +03:00
Vadim Petrochenkov
8b060e25ba
Implement compatibility lint for legacy constructor visibilities
2017-01-29 02:57:14 +03:00
Vadim Petrochenkov
18b96cf286
Privatize constructors of tuple structs with private fields
2017-01-29 02:57:14 +03:00
Jeffrey Seyfried
356fa2c5db
Warn on unused #[macro_use]
imports.
2017-01-22 01:31:00 +00:00
Jeffrey Seyfried
2efec3c180
Improve unused_extern_crate
warnings.
2017-01-21 07:40:19 +00:00
Jeffrey Seyfried
c02d577c53
Improve the warning cycle for use $crate;
.
2017-01-15 03:12:49 +00:00
Jeffrey Seyfried
235a7a743c
Change self
in an import list use foo::{self, ...}
to only import a module or enum foo
.
2017-01-10 05:54:22 +00:00
Vadim Petrochenkov
09aba18e10
More systematic error reporting in path resolution
2016-12-26 15:01:49 +03:00
Jeffrey Seyfried
41f1e189ee
Use DefId
s instead of NodeId
s for pub(restricted)
visibilities.
2016-12-24 00:23:03 +00:00
Jeffrey Seyfried
f10f50b426
Refactor how global paths are represented (for both ast and hir).
2016-12-22 06:14:35 +00:00
Jeffrey Seyfried
dcae8bfb40
Give extern crates' root modules a better name.
2016-12-18 23:26:32 +00:00
Jeffrey Seyfried
421c5d11c1
Remove scope placeholders, remove method add_macro
of ext::base::Resolver
.
2016-12-18 23:26:30 +00:00
Jeffrey Seyfried
4d638fd113
Canonicalize lifetime names.
2016-12-18 23:26:29 +00:00
Jeffrey Seyfried
532b013b28
Rename ModuleS
-> ModuleData
.
2016-12-18 23:26:27 +00:00
Jeffrey Seyfried
aa19274b72
De-genericize try_define
.
2016-12-18 23:26:26 +00:00
Jeffrey Seyfried
59de7f8f04
Add ident.unhygienize()
and use Ident
more instead of Name
in resolve
.
2016-12-18 23:26:22 +00:00
Oliver Schneider
5e51edb0de
annotate stricter lifetimes on LateLintPass methods to allow them to forward to a Visitor
2016-12-06 11:28:51 +01:00
Jeffrey Seyfried
29791ada1d
Minor cleanup.
2016-11-30 21:19:46 +00:00
Jeffrey Seyfried
e9e178a581
Refactor away ResolveResult
.
2016-11-29 00:18:39 +00:00
Jeffrey Seyfried
1fd9041b82
Avoid loading needless proc-macro dependencies.
2016-11-28 03:37:02 +00:00
bors
ebec55406b
Auto merge of #37824 - jseyfried:symbols, r=eddyb
...
Clean up `ast::Attribute`, `ast::CrateConfig`, and string interning
This PR
- removes `ast::Attribute_` (changing `Attribute` from `Spanned<Attribute_>` to a struct),
- moves a `MetaItem`'s name from the `MetaItemKind` variants to a field of `MetaItem`,
- avoids needlessly wrapping `ast::MetaItem` with `P`,
- moves string interning into `syntax::symbol` (`ast::Name` is a reexport of `symbol::Symbol` for now),
- replaces `InternedString` with `Symbol` in the AST, HIR, and various other places, and
- refactors `ast::CrateConfig` from a `Vec` to a `HashSet`.
r? @eddyb
2016-11-21 08:08:47 -06:00
Jeffrey Seyfried
bf41c85c24
Cleanup.
2016-11-21 09:21:48 +00:00
Jeffrey Seyfried
36c8f6b0d3
Cleanup InternedString
.
2016-11-21 09:00:56 +00:00
Jeffrey Seyfried
d2f8fb0a0a
Move syntax::util::interner
-> syntax::symbol
, cleanup.
2016-11-20 23:40:20 +00:00
Jeffrey Seyfried
a2626410d7
Refactor MetaItemKind
to use Name
s instead of InternedString
s.
2016-11-20 11:46:06 +00:00
Jeffrey Seyfried
3ea2bc4e93
Refactor away ast::Attribute_
.
2016-11-20 11:46:00 +00:00
Jeffrey Seyfried
6cb33a089f
Cleanup formatting.
2016-11-17 08:16:32 +00:00
Jeffrey Seyfried
9c88650080
Add feature use_extern_macros
.
2016-11-17 08:08:06 +00:00
Jeffrey Seyfried
b25c063caa
Refactor out PerNS
.
2016-11-17 08:07:47 +00:00
Jeffrey Seyfried
1bbf7a43d3
Add field expansion: Mark
to NameBinding
.
2016-11-17 08:07:46 +00:00
Jeffrey Seyfried
83aac43f52
Refactor Resolver::builtin_macros
to use NameBinding
s instead of DefId
s.
2016-11-17 08:07:45 +00:00