Skip to content

Commit e41d601

Browse files
Improved indentation and enum formatting (#4205)
1 parent 74353cc commit e41d601

File tree

3 files changed

+39
-26
lines changed

3 files changed

+39
-26
lines changed

crates/cli-support/src/js/mod.rs

+4-7
Original file line numberDiff line numberDiff line change
@@ -3910,12 +3910,9 @@ __wbg_set_wasm(wasm);"
39103910
} else {
39113911
format_doc_comments(comments, None)
39123912
};
3913-
if !variant_docs.is_empty() {
3914-
variants.push('\n');
3915-
variants.push_str(&variant_docs);
3916-
}
3917-
variants.push_str(&format!("{}:{},", name, value));
3918-
variants.push_str(&format!("\"{}\":\"{}\",", value, name));
3913+
variants.push_str(&variant_docs);
3914+
variants.push_str(&format!("{}: {}, ", name, value));
3915+
variants.push_str(&format!("\"{}\": \"{}\",\n", value, name));
39193916
if enum_.generate_typescript {
39203917
self.typescript.push('\n');
39213918
if !variant_docs.is_empty() {
@@ -3945,7 +3942,7 @@ __wbg_set_wasm(wasm);"
39453942

39463943
self.export(
39473944
&enum_.name,
3948-
&format!("Object.freeze({{ {} }})", variants),
3945+
&format!("Object.freeze({{\n{}}})", variants),
39493946
Some(&docs),
39503947
)?;
39513948

crates/cli-support/src/lib.rs

+16-6
Original file line numberDiff line numberDiff line change
@@ -501,9 +501,22 @@ fn reset_indentation(s: &str) -> String {
501501

502502
for line in s.lines() {
503503
let line = line.trim();
504-
if line.starts_with('}') || (line.ends_with('}') && !is_doc_comment(line)) {
504+
505+
// handle doc comments separately
506+
if is_doc_comment(line) {
507+
for _ in 0..indent {
508+
dst.push_str(" ");
509+
}
510+
dst.push(' ');
511+
dst.push_str(line);
512+
dst.push('\n');
513+
continue;
514+
}
515+
516+
if line.starts_with('}') {
505517
indent = indent.saturating_sub(1);
506518
}
519+
507520
let extra = if line.starts_with(':') || line.starts_with('?') {
508521
1
509522
} else {
@@ -513,14 +526,11 @@ fn reset_indentation(s: &str) -> String {
513526
for _ in 0..indent + extra {
514527
dst.push_str(" ");
515528
}
516-
if is_doc_comment(line) {
517-
dst.push(' ');
518-
}
519529
dst.push_str(line);
520530
}
521531
dst.push('\n');
522-
// Ignore { inside of comments and if it's an exported enum
523-
if line.ends_with('{') && !is_doc_comment(line) && !line.ends_with("Object.freeze({") {
532+
533+
if line.ends_with('{') {
524534
indent += 1;
525535
}
526536
}

crates/cli/tests/reference/enums.js

+19-13
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,28 @@ export function option_string_enum_echo(color) {
6767
* @enum {0 | 1 | 2}
6868
*/
6969
export const Color = Object.freeze({
70-
/**
71-
* Green as a leaf.
72-
*/
73-
Green:0,"0":"Green",
74-
/**
75-
* Yellow as the sun.
76-
*/
77-
Yellow:1,"1":"Yellow",
78-
/**
79-
* Red as a rose.
80-
*/
81-
Red:2,"2":"Red", });
70+
/**
71+
* Green as a leaf.
72+
*/
73+
Green: 0, "0": "Green",
74+
/**
75+
* Yellow as the sun.
76+
*/
77+
Yellow: 1, "1": "Yellow",
78+
/**
79+
* Red as a rose.
80+
*/
81+
Red: 2, "2": "Red",
82+
});
8283
/**
8384
* @enum {0 | 1 | 42 | 43}
8485
*/
85-
export const ImplicitDiscriminant = Object.freeze({ A:0,"0":"A",B:1,"1":"B",C:42,"42":"C",D:43,"43":"D", });
86+
export const ImplicitDiscriminant = Object.freeze({
87+
A: 0, "0": "A",
88+
B: 1, "1": "B",
89+
C: 42, "42": "C",
90+
D: 43, "43": "D",
91+
});
8692

8793
const __wbindgen_enum_ColorName = ["green", "yellow", "red"];
8894

0 commit comments

Comments
 (0)