Package com.google.devtools.ksp.symbol
Interface KSDeclarationContainer
-
- All Implemented Interfaces:
-
com.google.devtools.ksp.symbol.KSNode
public interface KSDeclarationContainer implements KSNode
A declaration container can have a list of declarations declared in it.
-
-
Method Summary
Modifier and Type Method Description abstract Sequence<KSDeclaration>getDeclarations()Declarations that are lexically declared inside the current container. -
-
Method Detail
-
getDeclarations
abstract Sequence<KSDeclaration> getDeclarations()
Declarations that are lexically declared inside the current container.
-
-
-
-