diff options
| author | Nick Cameron <ncameron@mozilla.com> | 2016-05-11 13:46:39 -0700 |
|---|---|---|
| committer | Nick Cameron <ncameron@mozilla.com> | 2016-05-11 13:50:23 -0700 |
| commit | 3e14f011eceea613b395619d41307cf8d87be84f (patch) | |
| tree | 5b6c6ff9978c273ce1e360564641f0896a8fe3c6 /src/libsyntax | |
| parent | a0a987722e8a38494d818443819ad0853771b37e (diff) | |
| download | rust-3e14f011eceea613b395619d41307cf8d87be84f.tar.gz rust-3e14f011eceea613b395619d41307cf8d87be84f.zip | |
save-analysis: give better text info in value fields
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index d1ad330c58c..e9f3472c4a1 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -2030,10 +2030,7 @@ pub enum ItemKind { /// A struct definition, e.g. `struct Foo<A> {x: A}` Struct(VariantData, Generics), /// Represents a Trait Declaration - Trait(Unsafety, - Generics, - TyParamBounds, - Vec<TraitItem>), + Trait(Unsafety, Generics, TyParamBounds, Vec<TraitItem>), // Default trait implementations /// |
