about summary refs log tree commit diff
path: root/src/libsyntax/entry.rs
AgeCommit message (Collapse)AuthorLines
2019-05-13Remove the equality operation between `Symbol` and strings.Nicholas Nethercote-1/+1
And also the equality between `Path` and strings, because `Path` is made up of `Symbol`s.
2019-05-13Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions.Nicholas Nethercote-2/+3
2019-02-07libsyntax => 2018Taiki Endo-2/+2
2018-12-25Remove licensesMark Rousskov-10/+0
2016-11-21Cleanup `InternedString`.Jeffrey Seyfried-1/+1
2016-02-11[breaking-change] don't glob export ast::Item_ variantsOliver 'ker' Schneider-2/+2
2015-09-24Cleanup interfaces of Name, SyntaxContext and IdentVadim Petrochenkov-1/+1
Make sure Name, SyntaxContext and Ident are passed by value Make sure Idents don't serve as keys (or parts of keys) in maps, Ident comparison is not well defined
2015-09-03Add an intital HIR and lowering stepNick Cameron-0/+2
2015-08-24Move entry point identification logic to libsyntaxWilliam Throwe-0/+42
Identifying entry points will be useful in --test mode, which is handled in libsyntax.