Fix after API changes. Should now be ready for 0.4 RC

This commit is contained in:
Jason Paryani
2013-12-06 13:19:30 -08:00
parent 90bf090db1
commit 6432e768c3
5 changed files with 44 additions and 34 deletions

View File

@@ -16,6 +16,6 @@ struct Thing {
}
struct TestObject {
object @0 :Object;
object @0 :AnyPointer;
}

View File

@@ -36,7 +36,7 @@ interface TestExtends extends(TestInterface) {
interface TestPipeline {
getCap @0 (n: UInt32, inCap :TestInterface) -> (s: Text, outBox :Box);
testPointers @1 (cap :TestInterface, obj :Object, list :List(TestInterface)) -> ();
testPointers @1 (cap :TestInterface, obj :AnyPointer, list :List(TestInterface)) -> ();
struct Box {
cap @0 :TestInterface;