blob: acf752c93106a4c3a6ede9e251b071991477d723 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.core.tests.dom;
import junit.framework.Assert;
import org.eclipse.wst.jsdt.core.dom.ASTVisitor;
import org.eclipse.wst.jsdt.core.dom.ClassInstanceCreation;
import org.eclipse.wst.jsdt.core.dom.IFunctionBinding;
class GetKeyVisitor extends ASTVisitor {
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.core.dom.ASTVisitor#visit(org.eclipse.wst.jsdt.core.dom.SimpleName)
*/
public boolean visit(ClassInstanceCreation node) {
IFunctionBinding constructorBinding = node.resolveConstructorBinding();
Assert.assertNotNull(constructorBinding);
Assert.assertNotNull(constructorBinding.getKey());
return super.visit(node);
}
}