comparison 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
comparison
equal deleted inserted replaced
20937:37ea76052733 20938:18c0f02fa4d2
72 72
73 public void setExecuteWith(List<NodeExecutionData> executeWith) { 73 public void setExecuteWith(List<NodeExecutionData> executeWith) {
74 this.executeWith = executeWith; 74 this.executeWith = executeWith;
75 } 75 }
76 76
77 public ExecutableTypeData findExecutableType(TypeData targetType) { 77 public ExecutableTypeData findExecutableType(TypeMirror targetType) {
78 return childNode.findExecutableType(targetType, getExecuteWith().size()); 78 return childNode.findExecutableType(targetType, getExecuteWith().size());
79 } 79 }
80 80
81 public List<ExecutableTypeData> findGenericExecutableTypes(ProcessorContext context) { 81 public List<ExecutableTypeData> findGenericExecutableTypes(ProcessorContext context) {
82 return childNode.findGenericExecutableTypes(context, getExecuteWith().size()); 82 return childNode.findGenericExecutableTypes(context, getExecuteWith().size());