comparison graal/com.oracle.truffle.api.codegen/src/com/oracle/truffle/api/codegen/NodeFactory.java @ 8253:4c0d72c98797

Codegen API naming cleanup.
author Christian Humer <christian.humer@gmail.com>
date Wed, 13 Mar 2013 19:59:09 +0100
parents c4c3f50fa9c2
children 47233c73ca58
comparison
equal deleted inserted replaced
8252:0905d796944a 8253:4c0d72c98797
67 67
68 /** 68 /**
69 * Returns a list of children that will be executed by the created node. This is useful for base 69 * Returns a list of children that will be executed by the created node. This is useful for base
70 * nodes that can execute a variable amount of nodes. 70 * nodes that can execute a variable amount of nodes.
71 */ 71 */
72 List<Class<? extends Node>> getChildrenSignature(); 72 List<Class<? extends Node>> getExecutionSignature();
73 73
74 } 74 }