fix(wgsl): indent call expression params (#7309)

This commit is contained in:
ganhaque 2024-11-06 12:09:14 -06:00 committed by GitHub
parent b5cda6d731
commit ea3a37a975
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,11 @@
fn f() {
let a = foo(
b,
c,
);
let a = Foo(
b,
c,
);
}