| Age | Commit message (Collapse) | Author | Lines |
|
|
|
|
|
|
|
rs=refactoring
|
|
|
|
Closes #3201.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This will help with the auto_serialize2 migration. We have to change
ident from a type alias to uint into a unique type. We need to use
a struct instead of a "enum ident = token::str_num" because structs
support constants, but newtypes do not.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
There is also code for ~Trait and &Trait, but these are currently (incorrectly)
synonyms for "as @Trait" and "as &Trait".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Require comma separators for all expression types except the plain block
|
|
|
|
We might need to use is_ident_or_path in a for other places too.
|
|
|
|
|
|
|
|
|
|
|