aboutsummaryrefslogtreecommitdiff
path: root/src/lib/std.rc
diff options
context:
space:
mode:
authorRoy Frostig <[email protected]>2010-08-24 18:37:42 -0700
committerRoy Frostig <[email protected]>2010-08-24 18:37:42 -0700
commitd9e3fb2c5d5e11725977a844b2b4c26b7a05048c (patch)
tree8693ffcd06acbefca5f20126871fd235035859b0 /src/lib/std.rc
parentFirst successful hashmap lookups. Yay. (diff)
downloadrust-d9e3fb2c5d5e11725977a844b2b4c26b7a05048c.tar.xz
rust-d9e3fb2c5d5e11725977a844b2b4c26b7a05048c.zip
Add std.dbg module for inspecting rust values in memory.
Diffstat (limited to 'src/lib/std.rc')
-rw-r--r--src/lib/std.rc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/std.rc b/src/lib/std.rc
index ea8e50eb..b789aa17 100644
--- a/src/lib/std.rc
+++ b/src/lib/std.rc
@@ -29,6 +29,8 @@ auth _str = unsafe;
auth _vec = unsafe;
auth _task = unsafe;
+auth dbg = unsafe;
+
auth _uint.next_power_of_two = unsafe;
auth map.mk_hashmap = unsafe;
auth rand.mk_rng = unsafe;
@@ -48,3 +50,4 @@ alt (target_os) {
mod map;
mod deque;
mod rand;
+mod dbg;