Interface ReturnStatement
-
- All Known Implementing Classes:
ReturnStatementImpl
public interface ReturnStatement extends Statement
return
See https://docs.python.org/3/reference/simple_stmts.html#grammar-token-return-stmtexpressions()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Token>commas()List<Expression>expressions()TokenreturnKeyword()
-
-
-
Method Detail
-
returnKeyword
Token returnKeyword()
-
expressions
List<Expression> expressions()
-
-