| Age | Commit message (Collapse) | Author | Lines |
|
|
|
rs=refactoring
|
|
|
|
|
|
Conflicts:
src/libsyntax/ext/source_util.rs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
API is (for now) mostly by value, there are options to use it by
reference if you like. Hash and equality functions must be pure
and by reference (forward looking to the day when something
like send_map becomes the standard map).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#2907.
|
|
|
|
|
|
|
|
|
|
|
|
|