summary refs log tree commit diff
path: root/src/libstd/ebml.rs
AgeCommit message (Collapse)AuthorLines
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-5/+5
2012-03-14std: Rename the hashmap constructors to conform to new standardsBrian Anderson-4/+2
Instead of using the new_ prefix just name them after their type
2012-03-14annotate libstd and start enforcing mutabilityNiko Matsakis-12/+11
2012-03-14adjust auto_serialize to generate fns named serialize_T()Niko Matsakis-2/+2
We used to generate a module T with a serialize() and deserialize() fn, but this was suboptimal for a number of reasons: - it required moving serialization into core so that uint etc worked - it was harder to override the serialization behavior locally (this is now trivial)
2012-03-13first (functional) version of the auto_serialize syntax extNiko Matsakis-0/+314
2012-03-13Overhaul constructor naming in libsBrian Anderson-2/+1
2012-02-24Encode/decode AST into metadata, re-instantiate inlined itemsNiko Matsakis-81/+128
2012-02-13add serialization library; convert ebml lib to use u64 internallyNiko Matsakis-36/+62
2012-02-10create serialization lib and update serializer to use itNiko Matsakis-13/+16
2012-02-10put serializer into the build and encode full item pathsNiko Matsakis-6/+12
2012-02-10update ebml interfaceNiko Matsakis-2/+22
2012-02-09Increase precedence of as operatorMarijn Haverbeke-18/+16
Closes #1717
2012-01-31Change option::t to optionTim Chevalier-1/+1
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
2012-01-23s/block()/fn()/gNiko Matsakis-2/+2
2012-01-19stdlib: "tag" -> "enum"Patrick Walton-2/+2
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-1/+1
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-11Major clean-up of std::ioMarijn Haverbeke-4/+4
Use ifaces instead of objs, stop wrapping everything in two (or three) layers of no-value-added indirection, and remove some of the more pointless/outdated idioms from the code.
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-4/+4
#debug.
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-0/+1
2011-12-06Establish 'core' library separate from 'std'.Graydon Hoare-0/+175