2011-12-20 12:29:59 -08:00
|
|
|
// Top-level, visible-everywhere definitions.
|
|
|
|
|
2012-03-02 17:20:00 -08:00
|
|
|
// Export various ubiquitous types, constructors, methods.
|
2011-12-20 12:29:59 -08:00
|
|
|
|
2012-02-21 09:23:01 -08:00
|
|
|
import option::{some, none};
|
2012-03-13 14:39:28 -07:00
|
|
|
import option = option::option;
|
2012-03-02 17:20:00 -08:00
|
|
|
import path = path::path;
|
2012-03-16 17:35:38 -07:00
|
|
|
import str::extensions;
|
2012-03-17 18:02:45 -07:00
|
|
|
import vec::extensions;
|
2012-04-11 21:45:18 -07:00
|
|
|
import vec_iter::extensions;
|
2012-03-16 17:49:58 -07:00
|
|
|
import option::extensions;
|
2012-04-11 21:45:18 -07:00
|
|
|
import option_iter::extensions;
|
2012-04-15 21:46:29 -07:00
|
|
|
import ptr::extensions;
|
2012-03-17 18:02:45 -07:00
|
|
|
|
|
|
|
export path, option, some, none, unreachable;
|
2012-03-16 17:35:38 -07:00
|
|
|
export extensions;
|
2011-12-20 12:29:59 -08:00
|
|
|
|
|
|
|
// Export the log levels as global constants. Higher levels mean
|
|
|
|
// more-verbosity. Error is the bottom level, default logging level is
|
|
|
|
// warn-and-below.
|
|
|
|
|
2011-12-22 10:30:04 -08:00
|
|
|
export error, warn, info, debug;
|
2012-01-24 00:54:17 -08:00
|
|
|
|
|
|
|
#[doc = "The error log level"]
|
2011-12-22 10:30:04 -08:00
|
|
|
const error : u32 = 0_u32;
|
2012-01-24 00:54:17 -08:00
|
|
|
#[doc = "The warning log level"]
|
2011-12-22 10:30:04 -08:00
|
|
|
const warn : u32 = 1_u32;
|
2012-01-24 00:54:17 -08:00
|
|
|
#[doc = "The info log level"]
|
2011-12-22 10:30:04 -08:00
|
|
|
const info : u32 = 2_u32;
|
2012-01-24 00:54:17 -08:00
|
|
|
#[doc = "The debug log level"]
|
2011-12-22 10:30:04 -08:00
|
|
|
const debug : u32 = 3_u32;
|
2011-12-22 14:42:52 -08:00
|
|
|
|
|
|
|
// A curious inner-module that's not exported that contains the binding
|
|
|
|
// 'core' so that macro-expanded references to core::error and such
|
|
|
|
// can be resolved within libcore.
|
|
|
|
mod core {
|
|
|
|
const error : u32 = 0_u32;
|
|
|
|
const warn : u32 = 1_u32;
|
|
|
|
const info : u32 = 2_u32;
|
|
|
|
const debug : u32 = 3_u32;
|
2012-01-17 16:45:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Similar to above. Some magic to make core testable.
|
|
|
|
#[cfg(test)]
|
|
|
|
mod std {
|
2012-04-05 17:30:26 -07:00
|
|
|
use std(vers = "0.2");
|
2012-01-17 16:45:22 -08:00
|
|
|
import std::test;
|
2012-01-20 11:12:03 -05:00
|
|
|
}
|
2012-03-08 14:29:17 -08:00
|
|
|
|
2012-03-06 19:09:32 -08:00
|
|
|
#[doc = "
|
2012-03-08 14:29:17 -08:00
|
|
|
A standard function to use to indicate unreachable code. Because the
|
2012-04-27 14:21:17 -07:00
|
|
|
function is guaranteed to fail, typestate will correctly identify
|
2012-03-08 14:29:17 -08:00
|
|
|
any code paths following the appearance of this function as unreachable.
|
2012-03-06 19:09:32 -08:00
|
|
|
"]
|
2012-03-08 14:29:17 -08:00
|
|
|
fn unreachable() -> ! {
|
|
|
|
fail "Internal error: entered unreachable code";
|
|
|
|
}
|
|
|
|
|