1
Fork 0

Cleanup in metadata module

This commit is contained in:
Brian Anderson 2011-06-27 16:03:01 -07:00
parent 119193497e
commit 45efb1f02a
6 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,5 @@
// Extracting metadata from crate files
// -*- rust -*-
import driver::session; import driver::session;
import front::ast; import front::ast;
import lib::llvm::False; import lib::llvm::False;

View file

@ -1,3 +1,4 @@
// Writing metadata into crate files
import std::str; import std::str;
import middle::trans; import middle::trans;

View file

@ -1,3 +1,5 @@
// Metadata decoding
import std::ebml; import std::ebml;
import std::option; import std::option;
import std::vec; import std::vec;

View file

@ -1,3 +1,4 @@
// EBML tag definitions shared by the encoder and decoder
const uint tag_paths = 0x01u; const uint tag_paths = 0x01u;

View file

@ -1,3 +1,5 @@
// Metadata encoding
import std::str; import std::str;
import std::vec; import std::vec;
import std::uint; import std::uint;

View file

@ -1,4 +1,5 @@
// Type decoding // Type decoding
import std::str; import std::str;
import std::vec; import std::vec;
import std::uint; import std::uint;