blob: 2fa84cf4236f0770c42168aad710e03c9bcbeb50 [file] [log] [blame]
package org.eclipse.jdt.internal.debug.eval;
import org.eclipse.jdt.core.dom.ITypeBinding;
import org.eclipse.jdt.core.dom.IVariableBinding;
public interface ExpressionBinder {
// Record and register the binding specified
void bind(IVariableBinding variableToBind, String asVariableName);
void bindThis(ITypeBinding thisForType, String asVariableName);
}