diff graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/model/NodeChildData.java @ 20938:18c0f02fa4d2

Truffle-DSL: make type systems optional.
author Christian Humer <christian.humer@gmail.com>
date Tue, 14 Apr 2015 15:12:48 +0200
parents 906367e494ca
children
line wrap: on
line diff
--- a/graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/model/NodeChildData.java	Tue Apr 14 22:12:03 2015 +0200
+++ b/graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/model/NodeChildData.java	Tue Apr 14 15:12:48 2015 +0200
@@ -74,7 +74,7 @@
         this.executeWith = executeWith;
     }
 
-    public ExecutableTypeData findExecutableType(TypeData targetType) {
+    public ExecutableTypeData findExecutableType(TypeMirror targetType) {
         return childNode.findExecutableType(targetType, getExecuteWith().size());
     }