Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-dev] bug in NaiveASTFlattener

method : 
public boolean visit(ThisExpression node)

buffer should append 'this' and dot  at first 
one case 
ThisExpression thisExpression = ast.newThisExpression();
thisExpression.setQualifier(ast.newName("name"));
System.out.println(thisExpression.toString());
output  is 'name.this' , expected is 'this.name'


Back to the top