Source
void addTable(SchemaTable table) {
if (this[table.name] != null) {
throw new SchemaException("Table ${table.name} already exists.");
}
tables.add(table);
}
void addTable(SchemaTable table) {
if (this[table.name] != null) {
throw new SchemaException("Table ${table.name} already exists.");
}
tables.add(table);
}