Example usage for org.eclipse.jdt.internal.compiler.ast WhileStatement sourceStart

List of usage examples for org.eclipse.jdt.internal.compiler.ast WhileStatement sourceStart

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.ast WhileStatement sourceStart.

Prototype

public int sourceStart() 

Source Link

Usage

From source file:ch.uzh.ifi.seal.changedistiller.ast.java.JavaMethodBodyConverter.java

License:Apache License

@Override
public boolean visit(WhileStatement whileStatement, BlockScope scope) {
    preVisit(whileStatement);//from ww  w. ja  va  2 s  .  com
    push(fASTHelper.convertNode(whileStatement), whileStatement.condition.toString(),
            whileStatement.sourceStart(), whileStatement.sourceEnd);
    whileStatement.action.traverse(this, scope);
    return false;
}