131132133134135136137138
int lastDot = name.lastIndexOf('.'); return lastDot >= 0 ? name.substring(0, lastDot) : name; } private static void declareType(Scope scope, String identifier) { IdeDeclaration decl = new PredefinedTypeDeclaration(identifier); decl.scope(scope); }