Stub implementations (to be implemented in their respective files): NewMatchCodeGen creates a match expression codegen (match.go) Implementation in match.go
(e *ast.MatchExpr)
| 142 | // NewMatchCodeGen creates a match expression codegen (match.go) |
| 143 | // Implementation in match.go |
| 144 | func NewMatchCodeGen(e *ast.MatchExpr) Generator { |
| 145 | return &MatchCodeGen{ |
| 146 | BaseGenerator: NewBaseGenerator(), |
| 147 | Match: e, |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // NewLambdaCodeGen creates a lambda expression codegen (lambda.go) |
| 152 | // Implementation in lambda.go |