comparison truffle/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/ExecuteMethodTest.java @ 22325:414e82b9fc35

Release 0.9 is out, let's remove deprecated elements from the API
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Fri, 23 Oct 2015 20:23:00 +0200
parents dc83cc1f94f2
children
comparison
equal deleted inserted replaced
22324:ad67d348e361 22325:414e82b9fc35
37 37
38 private static final String ERROR_NO_EXECUTE = "No accessible and overridable generic execute method found. Generic execute methods usually have the signature 'public abstract {Type} " 38 private static final String ERROR_NO_EXECUTE = "No accessible and overridable generic execute method found. Generic execute methods usually have the signature 'public abstract {Type} "
39 + "execute(VirtualFrame)' and must not throw any checked exceptions."; 39 + "execute(VirtualFrame)' and must not throw any checked exceptions.";
40 40
41 @TypeSystem({int.class}) 41 @TypeSystem({int.class})
42 @DSLOptions(useNewLayout = true) 42 @DSLOptions
43 static class ExecuteMethodTypes { 43 static class ExecuteMethodTypes {
44 } 44 }
45 45
46 @TypeSystemReference(ExecuteMethodTypes.class) 46 @TypeSystemReference(ExecuteMethodTypes.class)
47 abstract static class ChildNoFrame extends Node { 47 abstract static class ChildNoFrame extends Node {