return;
}
if (decl.getLocation() == VariableDeclaration.NON_LOCAL)
{
FieldUnit fieldUnit= project.getOrCreateFieldUnit(typeDecl.getType(), name);
if (Modifier.isStatic(decl.getModifiers()))
{
// print(normalizeExpression(typeDecl.toString()));
print(ClassUnit.STATIC_MEMBER);
}
else
{
// print("this");
}
print("$$$");
// print(normalizeAccess(name));
print(name);
initializeField(decl, ":");
fieldUnit.setData(reset());
return;
}
else
{
if (decl.getLocation() != VariableDeclaration.LOCAL)