Return the name of this argument's parameter, or null if it is not a Keyword argument.
()
| 42 | |
| 43 | /** Return the name of this argument's parameter, or null if it is not a Keyword argument. */ |
| 44 | @Nullable |
| 45 | public String getName() { |
| 46 | return null; |
| 47 | } |
| 48 | |
| 49 | /** Syntax node for a positional argument, {@code f(expr)}. */ |
| 50 | public static final class Positional extends Argument { |
no outgoing calls