blob: 21033c4a10a25480be67f06e3956824af64062f7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*******************************************************************************/
package org.eclipse.dltk.ruby.typeinference;
import org.eclipse.dltk.ast.expressions.CallExpression;
import org.eclipse.dltk.ti.goals.ItemReference;
import org.eclipse.dltk.ti.goals.PossiblePosition;
public class RubyMethodReference extends ItemReference {
private CallExpression node;
public RubyMethodReference(String name, String parentModelKey,
PossiblePosition pos, int accuracy) {
super(name, parentModelKey, pos, accuracy);
}
public CallExpression getNode() {
return node;
}
public void setNode(CallExpression node) {
this.node = node;
}
}