diff options
| author | Roy Frostig <[email protected]> | 2010-08-24 18:37:42 -0700 |
|---|---|---|
| committer | Roy Frostig <[email protected]> | 2010-08-24 18:37:42 -0700 |
| commit | d9e3fb2c5d5e11725977a844b2b4c26b7a05048c (patch) | |
| tree | 8693ffcd06acbefca5f20126871fd235035859b0 /src/lib/std.rc | |
| parent | First successful hashmap lookups. Yay. (diff) | |
| download | rust-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.rc | 3 |
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; |