ArrowFunction node
| 9 | |
| 10 | // ArrowFunction node |
| 11 | type ArrowFunction struct { |
| 12 | FreeFloating freefloating.Collection |
| 13 | Position *position.Position |
| 14 | ReturnsRef bool |
| 15 | Static bool |
| 16 | PhpDocComment string |
| 17 | Params []node.Node |
| 18 | ReturnType node.Node |
| 19 | Expr node.Node |
| 20 | } |
| 21 | |
| 22 | // NewArrowFunction node constructor |
| 23 | func NewArrowFunction(Params []node.Node, ReturnType node.Node, Stmt node.Node, Static bool, ReturnsRef bool, PhpDocComment string) *ArrowFunction { |
nothing calls this directly
no outgoing calls
no test coverage detected