From 6a0b06e56287f1de7ff096ed79fbf86e1e527290 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 30 Jun 2010 22:45:54 -0700 Subject: Rename 'exterior' to 'box' and 'interior' to 'local' (at least wrt. slots; keep MEM_interior for describing interior-parts-of-allocations) --- src/test/run-pass/acyclic-unwind.rs | 4 ++-- src/test/run-pass/obj-drop.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/test') diff --git a/src/test/run-pass/acyclic-unwind.rs b/src/test/run-pass/acyclic-unwind.rs index b549cffe..192a01f3 100644 --- a/src/test/run-pass/acyclic-unwind.rs +++ b/src/test/run-pass/acyclic-unwind.rs @@ -4,10 +4,10 @@ io fn f(chan[int] c) { type t = tup(int,int,int); - // Allocate an exterior. + // Allocate a box. let @t x = tup(1,2,3); - // Signal parent that we've allocated an exterior. + // Signal parent that we've allocated a box. c <| 1; while (true) { diff --git a/src/test/run-pass/obj-drop.rs b/src/test/run-pass/obj-drop.rs index 6d4ca3d4..ab068b9b 100644 --- a/src/test/run-pass/obj-drop.rs +++ b/src/test/run-pass/obj-drop.rs @@ -1,6 +1,6 @@ fn main() { obj handle(@int i) { } - // This just tests whether the obj leaks its exterior state members. + // This just tests whether the obj leaks its box state members. auto ob = handle(0xf00f00); } \ No newline at end of file -- cgit v1.2.3