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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom VariableDeclarationExpression 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(VariableDeclarationExpression node) {
    put(node, node.resolveTypeBinding());
    return true;
}