Example usage for org.eclipse.jdt.core.dom InstanceofExpression resolveTypeBinding

List of usage examples for org.eclipse.jdt.core.dom InstanceofExpression resolveTypeBinding

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom InstanceofExpression resolveTypeBinding.

Prototype

public final ITypeBinding resolveTypeBinding() 

Source Link

Document

Resolves and returns the binding for the type of this expression.

Usage

From source file:com.google.devtools.j2cpp.types.BindingMapBuilder.java

License:Open Source License

@Override
public boolean visit(InstanceofExpression node) {
    put(node, node.resolveTypeBinding());
    return true;
}