(t *testing.T)
| 261 | } |
| 262 | |
| 263 | func TestLambdaCodeGen_NilExpr(t *testing.T) { |
| 264 | gen := NewLambdaCodeGen(nil) |
| 265 | result := gen.Generate() |
| 266 | |
| 267 | if len(result.Output) != 0 { |
| 268 | t.Errorf("Expected empty code for nil expr, got: %s", string(result.Output)) |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | func TestLambdaCodeGen_IntegrationWithGenerateExpr(t *testing.T) { |
| 273 | // Test that lambda codegen integrates with GenerateExpr dispatcher |
nothing calls this directly
no test coverage detected