comparison graal/com.oracle.truffle.ruby.nodes/src/com/oracle/truffle/ruby/nodes/call/CallNode.java @ 13555:f70c894ae874

Ruby: fix minor issues.
author Chris Seaton <chris.seaton@oracle.com>
date Wed, 08 Jan 2014 17:10:18 +0000
parents 0fbee3eb71f0
children d7af2296cebb
comparison
equal deleted inserted replaced
13551:ba72961e0d41 13555:f70c894ae874
77 77
78 this.arguments = adoptChildren(arguments); 78 this.arguments = adoptChildren(arguments);
79 this.name = name; 79 this.name = name;
80 this.isSplatted = isSplatted; 80 this.isSplatted = isSplatted;
81 81
82 dispatchHead = adoptChild(adoptChild(new DispatchHeadNode(context, section, name, isSplatted))); 82 dispatchHead = adoptChild(new DispatchHeadNode(context, section, name, isSplatted));
83 } 83 }
84 84
85 @Override 85 @Override
86 public Object execute(VirtualFrame frame) { 86 public Object execute(VirtualFrame frame) {
87 final Object receiverObject = receiver.execute(frame); 87 final Object receiverObject = receiver.execute(frame);