blob: 6a018b00de88d3db3289d6d88acfcded55ad5c0b [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.ast.references;
import org.eclipse.dltk.ast.DLTKToken;
public class ConstantReference extends SimpleReference {
public ConstantReference(DLTKToken token) {
super(token);
}
public ConstantReference(int start, int end, String name) {
super(start, end, name);
}
}