comparison graal/com.oracle.truffle.api.codegen/src/com/oracle/truffle/api/codegen/NodeChild.java @ 10591:3cc5fb59916e

Truffle-DSL: Renamed @NodeClass to @NodeContainer. splitByMethodName is not an option anymore and is always enabled if a @NodeContainer is used.
author Christian Humer <christian.humer@gmail.com>
date Fri, 28 Jun 2013 12:19:51 +0200
parents 8b2573c8d47f
children
comparison
equal deleted inserted replaced
10590:6eb8d63cea34 10591:3cc5fb59916e
34 @Target({ElementType.TYPE}) 34 @Target({ElementType.TYPE})
35 public @interface NodeChild { 35 public @interface NodeChild {
36 36
37 String value() default ""; 37 String value() default "";
38 38
39 Class<?> type() default NodeClass.InheritNode.class; 39 Class<?> type() default Node.class;
40 40
41 /** 41 /**
42 * The {@link #executeWith()} property allows a node to pass the result of one child's 42 * The {@link #executeWith()} property allows a node to pass the result of one child's
43 * executable as an input to another child's executable. These referenced children must be 43 * executable as an input to another child's executable. These referenced children must be
44 * defined before the current node in the execution order. The current node {@link #type()} 44 * defined before the current node in the execution order. The current node {@link #type()}