Represents a language node that has a name
| 9 | * Represents a language node that has a name |
| 10 | */ |
| 11 | @PublicApi |
| 12 | @NullMarked |
| 13 | public interface NamedNode<T extends NamedNode> extends Node<T> { |
| 14 | |
| 15 | /** |
| 16 | * @return the name of this node, or null if this node is anonymous (e.g. an anonymous operation definition) |
| 17 | */ |
| 18 | @Nullable String getName(); |
| 19 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…