diff graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/NodeContainerTest.java @ 11439:efe58aa92f86

Truffle-DSL: guards can now be declared using any base type or interface of the target value type.
author Christian Humer <christian.humer@gmail.com>
date Tue, 27 Aug 2013 22:08:26 +0200
parents c7d9ff67beed
children
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/NodeContainerTest.java	Tue Aug 27 18:11:35 2013 +0200
+++ b/graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/NodeContainerTest.java	Tue Aug 27 22:08:26 2013 +0200
@@ -96,8 +96,12 @@
         assertSame(context, executeWith(node));
     }
 
+    static class StrBase {
+
+    }
+
     @NodeContainer(BuiltinNode.class)
-    static class Str {
+    static class Str extends StrBase {
 
         private final String internal;