Fix formatting for nested function returns (#4518)
Previously, this was the output of the formatter:
```
fn f = () => {
  return () => {
  return 1
}
}
```
Now the above will be reformatted as
```
fn f = () => {
  return () => {
    return 1
  }
}
```
Much better!
			
			
This commit is contained in:
		
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
		Reference in New Issue
	
	Block a user