comparison graal/com.oracle.truffle.ruby.nodes/src/com/oracle/truffle/ruby/nodes/methods/MethodDefinitionNode.java @ 13568:f29a358cf3da

Ruby: minor tweaks to implementation nodes for debugging access
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 08 Jan 2014 14:00:21 -0800
parents 0fbee3eb71f0
children 62bfc12dc9e1
comparison
equal deleted inserted replaced
13567:2f67ba090923 13568:f29a358cf3da
1 /* 1 /*
2 * Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved. This 2 * Copyright (c) 2013, 2014 Oracle and/or its affiliates. All rights reserved. This
3 * code is released under a tri EPL/GPL/LGPL license. You can use it, 3 * code is released under a tri EPL/GPL/LGPL license. You can use it,
4 * redistribute it and/or modify it under the terms of the: 4 * redistribute it and/or modify it under the terms of the:
5 * 5 *
6 * Eclipse Public License version 1.0 6 * Eclipse Public License version 1.0
7 * GNU General Public License version 2 7 * GNU General Public License version 2
85 @Override 85 @Override
86 public Object execute(VirtualFrame frame) { 86 public Object execute(VirtualFrame frame) {
87 return executeMethod(frame); 87 return executeMethod(frame);
88 } 88 }
89 89
90 public String getName() {
91 return name;
92 }
93
90 } 94 }