All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ceylon.language.meta.declaration.SetterDeclaration.ceylon Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version

"A setter declaration represents the assign block of a [[ValueDeclaration]]."
shared sealed interface SetterDeclaration
        satisfies NestableDeclaration {

    "The variable value this setter is for."
    shared formal ValueDeclaration variable;

    actual => variable.actual;
    
    formal => variable.formal;

    default => variable.default;
    
    shared => variable.shared;

    containingPackage => variable.containingPackage;
    
    containingModule => variable.containingModule;
    
    container => variable.container;

    toplevel => variable.toplevel;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy