Change base class of GeneratedDeclaration to Modifiable

This commit is contained in:
Tamas Vajk
2021-05-19 11:23:32 +02:00
parent 53054290d1
commit e93736f583

View File

@@ -160,8 +160,8 @@ abstract private class GeneratedType extends ValueOrRefType, GeneratedElement {
* This is extended in client code to identify the actual
* declarations that should be generated.
*/
abstract class GeneratedDeclaration extends Declaration {
GeneratedDeclaration() { this.(Modifiable).isEffectivelyPublic() }
abstract class GeneratedDeclaration extends Modifiable {
GeneratedDeclaration() { this.isEffectivelyPublic() }
}
private class IndirectType extends GeneratedType {