comparison graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/template/ParameterSpec.java @ 13534:dbc17f07cec6

Truffle-DSL: fixed missing field in copy constructor of ParamterSpec.
author Christian Humer <christian.humer@gmail.com>
date Tue, 07 Jan 2014 20:21:17 +0100
parents b466199f19e1
children
comparison
equal deleted inserted replaced
13533:b466199f19e1 13534:dbc17f07cec6
55 public ParameterSpec(ParameterSpec o, List<TypeMirror> allowedTypes) { 55 public ParameterSpec(ParameterSpec o, List<TypeMirror> allowedTypes) {
56 this.name = o.name; 56 this.name = o.name;
57 this.local = o.local; 57 this.local = o.local;
58 this.typeDefinition = o.typeDefinition; 58 this.typeDefinition = o.typeDefinition;
59 this.execution = o.execution; 59 this.execution = o.execution;
60 this.signature = o.signature;
60 this.allowedTypes = allowedTypes; 61 this.allowedTypes = allowedTypes;
61 } 62 }
62 63
63 public NodeExecutionData getExecution() { 64 public NodeExecutionData getExecution() {
64 return execution; 65 return execution;