about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
AgeCommit message (Expand)AuthorLines
2017-01-11syntax: struct field attributes and cfgBenjamin Saunders-0/+2
2016-12-30Fix LEB128 to work with the stage1Simonas Kazlauskas-2/+2
2016-12-30Cleanup FIXMEsSimonas Kazlauskas-22/+0
2016-12-30Such large. Very 128. Much bits.Simonas Kazlauskas-8/+20
2016-12-28hir: lower `ImplicitSelf` to resolved `Self` TyQPath's.Eduard-Mihai Burtescu-8/+7
2016-12-23Auto merge of #38232 - jseyfried:refactor_global_paths, r=nrcbors-4/+23
2016-12-22Remove outdated FIXME commentEsteban Küber-4/+0
2016-12-22Refactor how global paths are represented (for both ast and hir).Jeffrey Seyfried-4/+23
2016-12-19Optimize `ast::PathSegment`.Jeffrey Seyfried-82/+15
2016-12-18Remove `MacroDef`'s fields `imported_from` and `allow_internal_unstable`,Jeffrey Seyfried-2/+0
2016-12-18Add `ident.unhygienize()` and use `Ident` more instead of `Name` in `resolve`.Jeffrey Seyfried-4/+8
2016-11-21Implement the `loop_break_value` feature.Geoffry Song-2/+2
2016-11-21Cleanup `InternedString`.Jeffrey Seyfried-1/+1
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-9/+9
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-43/+8
2016-11-20Refactor `P<ast::MetaItem>` -> `ast::MetaItem`.Jeffrey Seyfried-2/+2
2016-11-20Move `MetaItemKind`'s `Name` to a field of `MetaItem`.Jeffrey Seyfried-4/+9
2016-11-20Refactor `CrateConfig`.Jeffrey Seyfried-30/+3
2016-11-20Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s.Jeffrey Seyfried-3/+9
2016-11-20Refactor away `ast::Attribute_`.Jeffrey Seyfried-3/+3
2016-11-10syntax: don't fake a block around closures' bodies during parsing.Eduard Burtescu-2/+2
2016-11-09Rollup merge of #37428 - estebank:generic-type-error-span, r=sanxiynEduard-Mihai Burtescu-0/+8
2016-11-08Point to type argument span when used as traitEsteban Küber-0/+8
2016-11-03Make `ast::ExprKind` smaller.Jeffrey Seyfried-1/+1
2016-10-31Changed most vec! invocations to use square bracesiirelu-2/+2
2016-10-29Move `CrateConfig` from `Crate` to `ParseSess`.Jeffrey Seyfried-1/+0
2016-10-27Implement field shorthands in struct literal expressions.Eduard Burtescu-0/+1
2016-10-24Refactor away fields `MacroDef::{use_locally, export}`.Jeffrey Seyfried-2/+0
2016-10-10Avoid allocations in `Decoder::read_str`.Nicholas Nethercote-1/+1
2016-10-01Rollup merge of #34764 - pnkfelix:attrs-on-generic-formals, r=eddybManish Goregaokar-0/+2
2016-09-28libsyntax: clearer names for some AST partsJonas Schievink-6/+6
2016-09-23Add attribute support to generic lifetime and type parameters.Felix S. Klock II-0/+2
2016-09-20serialize: allow specifying the default behavior for specializations.Eduard Burtescu-2/+12
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-5/+33
2016-09-11Documentation of what does for each typeathulappadan-0/+1
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-1/+1
2016-09-04Replace `_, _, _` with `..`Vadim Petrochenkov-1/+1
2016-09-03Add unions to ASTVadim Petrochenkov-1/+1
2016-08-29Future proof the AST for `union`.Jeffrey Seyfried-0/+5
2016-08-28Rollup merge of #35850 - SergioBenitez:master, r=nrcJeffrey Seyfried-8/+50
2016-08-28Rollup merge of #35480 - KiChjang:e0379-bonus, r=nikomatsakisJeffrey Seyfried-2/+2
2016-08-28Rollup merge of #35618 - jseyfried:ast_view_path_refactor, r=eddybJeffrey Seyfried-34/+6
2016-08-27Change Constness to Spanned<Constness>Keith Yeung-2/+2
2016-08-25Implement RFC#1559: allow all literals in attributes.Sergio Benitez-8/+50
2016-08-21Refactor away variant `ast::PathListItemKind::Mod`Jeffrey Seyfried-34/+6
2016-08-18Add Span field for Generics structsGuillaume Gomez-2/+4
2016-08-13Rename empty/bang to neverAndrew Cann-2/+2
2016-08-13Remove obsolete divergence related stuffAndrew Cann-4/+0
2016-08-13Start implementation of RFC 1216 (make ! a type)Andrew Cann-0/+3
2016-08-12syntax: add anonymized type syntax, i.e. impl TraitA+TraitB.Eduard Burtescu-0/+2