--- source: crates/biome_js_analyze/tests/spec_tests.rs expression: valid.js --- # Input ```jsx /* should not generate diagnostics */ function simpleBranches() { if (firstCondition) { // +1 return 1; } else if (secondCondition) { // +1 return 2; } else { // +1 return 3; } } ```