Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiline anon struct type with assignment #557

Closed
Gama11 opened this issue Jan 17, 2020 · 0 comments
Closed

Multiline anon struct type with assignment #557

Gama11 opened this issue Jan 17, 2020 · 0 comments
Labels
bug Something isn't working indentation Indentation is incorrect

Comments

@Gama11
Copy link
Member

Gama11 commented Jan 17, 2020

class Main {
	static function main() {
		var example:{
			function test():Void;
		} = {
			test: function test():Void {}
		};
	}
}

is reformatted to:

class Main {
	static function main() {
		var example:{
			function test():Void;
		} = {
				test: function test():Void {}
			};
	}
}
@Gama11 Gama11 added bug Something isn't working indentation Indentation is incorrect labels Jan 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working indentation Indentation is incorrect
Projects
None yet
Development

No branches or pull requests

1 participant