summary refs log tree commit diff
path: root/src/librustc/front/assign_node_ids.rs
AgeCommit message (Collapse)AuthorLines
2013-09-23librustc: Change fold to use traits instead of `@fn`.Patrick Walton-2/+15
2013-09-10Delay assignment of node ids until after expansion. Ensures that each AST nodeNiko Matsakis-0/+19
has a unique id. Fixes numerous bugs in macro expansion and deriving. Add two representative tests. Fixes #7971 Fixes #6304 Fixes #8367 Fixes #8754 Fixes #8852 Fixes #2543 Fixes #7654