Interface Symbol.LabelSymbol
-
- All Known Implementing Classes:
JavaSymbol.JavaLabelSymbol
- Enclosing interface:
- Symbol
public static interface Symbol.LabelSymbol
Label symbol. Note: this is not a Symbol per say.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LabeledStatementTree
declaration()
Declaration tree of this label.String
name()
Name of that label.List<IdentifierTree>
usages()
Usages tree of this label.
-
-
-
Method Detail
-
name
String name()
Name of that label.
-
usages
List<IdentifierTree> usages()
Usages tree of this label.
-
declaration
LabeledStatementTree declaration()
Declaration tree of this label.
-
-