rust/tests
Scott Olson 5f65ee2713 Refactor in preparation for Value locals.
Turning locals into `Vec<Value>` will allow writing `PrimVal` results
directly into the locals array without creating `memory::Allocation`s
for every local.

This will entail passing around a generalized kind of `Lvalue` instead
of `Pointer`s for the destinations of operations. Replacing `Pointer`
with `Lvalue` is mostly done with this commit, but expanding `Lvalue`
will come later.

This commit turns every local from `Pointer` into `Value::ByRef(ptr)`.
Locals which are `Value::ByVal(prim_val)` will come in a later commit.
2016-10-14 03:31:45 -06:00
..
compile-fail allow tuple field indexing into anonymous tuples 2016-09-28 18:22:53 +02:00
run-pass Refactor in preparation for Value locals. 2016-10-14 03:31:45 -06:00
compiletest.rs fix run-pass test error message parsing 2016-09-28 14:53:43 +02:00