return lastDot >= 0 ? name.substring(0, lastDot) : name;
}
private static void declareType(Scope scope, String identifier) {
IdeDeclaration decl = new PredefinedTypeDeclaration(identifier);
decl.scope(scope);
}
protected static void declareValues(Scope scope, String[] identifiers) {
for (String identifier : identifiers) {
Ide ide = new Ide(new JooSymbol(identifier));