blob: ee332735e9d0162df1e8b0a10324fdc6b3596db6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.tcl.internal.core.codeassist.selection;
import org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.ast.references.SimpleReference;
public class SelectionOnVariable extends SimpleReference {
public SelectionOnVariable(String name, ASTNode token, ASTNode node,
ASTNode inNode) {
super(token.sourceStart(), token.sourceEnd(), name);
}
}