sigil-stitch 0.3.0

Type-safe, import-aware, width-aware code generation for multiple languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
//! JavaScript language implementation.

use crate::import::{ImportEntry, ImportGroup};
use crate::lang::CodeLang;
use crate::lang::config::{
    BlockSyntaxConfig, EnumAndAnnotationConfig, FunctionSyntaxConfig, GenericSyntaxConfig,
    QuoteStyle, TypeDeclSyntaxConfig, TypePresentationConfig,
};
use crate::spec::modifiers::{DeclarationContext, TypeKind, Visibility};
use crate::type_name::TypePresentation;

/// JavaScript language implementation.
///
/// JavaScript-specific behaviors:
/// - `import { X } from 'module'` (ESM) — no `import type`
/// - `/** ... */` JSDoc doc comments
/// - `export` for top-level visibility, no member visibility keywords
/// - `class` keyword only (no `interface`, no `abstract`)
/// - No type annotations on parameters, fields, or return types
/// - Configurable semicolons and quote style
///
/// # Type annotations
///
/// JavaScript has no type annotations. Use `TypeName::primitive("")` for
/// parameter and field types, and don't call `.returns()` on `FunSpecBuilder`:
/// ```text
/// // Parameter without type annotation:
/// ParameterSpec::new("name", TypeName::primitive(""))
///
/// // Field without type annotation:
/// FieldSpec::builder("count", TypeName::primitive("")).build()
///
/// // Function without return type — just don't call .returns():
/// let mut fb = FunSpec::builder("greet");
/// fb.add_param(ParameterSpec::new("name", TypeName::primitive("")));
/// fb.body(body);
/// ```
///
/// # Private fields
///
/// ES2022 private fields use `#` prefix. Name the field directly:
/// ```text
/// FieldSpec::builder("#count", TypeName::primitive("")).build()
/// ```
#[derive(Debug, Clone)]
pub struct JavaScript {
    /// Quote style for string literals and import paths.
    pub quote_style: QuoteStyle,
    /// Indent with this string (default: "  ").
    pub indent: String,
    /// File extension (default: "js"). Set to "mjs" or "cjs" for explicit module type.
    pub extension: String,
    /// Whether to emit semicolons (default: true).
    pub semicolons: bool,
}

impl Default for JavaScript {
    fn default() -> Self {
        Self {
            quote_style: QuoteStyle::Single,
            indent: "  ".to_string(),
            extension: "js".to_string(),
            semicolons: true,
        }
    }
}

impl JavaScript {
    /// Create a new JavaScript language instance.
    pub fn new() -> Self {
        Self::default()
    }

    /// Create a JavaScript configured for ES modules (.mjs extension).
    pub fn esm() -> Self {
        Self {
            extension: "mjs".to_string(),
            ..Self::default()
        }
    }

    /// Create a JavaScript configured for CommonJS modules (.cjs extension).
    pub fn cjs() -> Self {
        Self {
            extension: "cjs".to_string(),
            ..Self::default()
        }
    }

    /// Set the quote style used for string literals and import paths.
    pub fn with_quote_style(mut self, qs: QuoteStyle) -> Self {
        self.quote_style = qs;
        self
    }

    /// Set the indent string (e.g., `"  "`, `"    "`, `"\t"`).
    pub fn with_indent(mut self, s: &str) -> Self {
        self.indent = s.to_string();
        self
    }

    /// Control whether statements are terminated with `;`.
    pub fn with_semicolons(mut self, b: bool) -> Self {
        self.semicolons = b;
        self
    }

    /// Set the file extension (e.g., `"js"`, `"mjs"`, `"cjs"`).
    pub fn with_extension(mut self, s: &str) -> Self {
        self.extension = s.to_string();
        self
    }
}

#[rustfmt::skip]
const JS_RESERVED: &[&str] = &[
    // ECMAScript reserved words
    "break", "case", "catch", "class", "const", "continue", "debugger",
    "default", "delete", "do", "else", "enum", "export", "extends", "false",
    "finally", "for", "function", "if", "import", "in", "instanceof", "new",
    "null", "return", "super", "switch", "this", "throw", "true", "try",
    "typeof", "var", "void", "while", "with",
    // Strict-mode reserved words
    "implements", "interface", "let", "package", "private", "protected",
    "public", "static", "yield",
    // Async/await (ES2017+)
    "async", "await",
];

impl CodeLang for JavaScript {
    fn file_extension(&self) -> &str {
        &self.extension
    }

    fn reserved_words(&self) -> &[&str] {
        JS_RESERVED
    }

    fn render_imports(&self, imports: &ImportGroup) -> String {
        let mut lines = Vec::new();
        let quote = self.quote_style.char();
        let semi = if self.semicolons { ";" } else { "" };

        // Group entries by module path.
        let mut by_module: std::collections::BTreeMap<&str, Vec<&ImportEntry>> =
            std::collections::BTreeMap::new();
        for entry in &imports.entries {
            if entry.is_side_effect {
                lines.push(format!("import {quote}{}{quote}{semi}", entry.module));
                continue;
            }
            if entry.is_wildcard {
                let alias = super::module_to_alias(&entry.module);
                lines.push(format!(
                    "import * as {} from {quote}{}{quote}{semi}",
                    alias, entry.module,
                ));
                continue;
            }
            by_module.entry(&entry.module).or_default().push(entry);
        }

        for (module, entries) in &by_module {
            // JavaScript has no `import type` — all entries are value imports.
            let mut names: Vec<String> = Vec::new();

            for entry in entries {
                let spec = if let Some(alias) = &entry.alias {
                    format!("{} as {}", entry.name, alias)
                } else {
                    entry.name.clone()
                };
                names.push(spec);
            }

            names.sort();

            if !names.is_empty() {
                lines.push(format!(
                    "import {{ {} }} from {quote}{}{quote}{semi}",
                    names.join(", "),
                    module,
                ));
            }
        }

        lines.join("\n")
    }

    fn render_string_literal(&self, s: &str) -> String {
        match self.quote_style {
            QuoteStyle::Single => {
                format!("'{}'", s.replace('\\', "\\\\").replace('\'', "\\'"))
            }
            QuoteStyle::Double => {
                format!("\"{}\"", s.replace('\\', "\\\\").replace('"', "\\\""))
            }
        }
    }

    fn render_doc_comment(&self, lines: &[&str]) -> String {
        if lines.is_empty() {
            return String::new();
        }
        let mut out = String::from("/**\n");
        for line in lines {
            if line.is_empty() {
                out.push_str(" *\n");
            } else {
                out.push_str(&format!(" * {line}\n"));
            }
        }
        out.push_str(" */");
        out
    }

    fn line_comment_prefix(&self) -> &str {
        "//"
    }

    fn render_visibility(&self, vis: Visibility, ctx: DeclarationContext) -> &str {
        match ctx {
            DeclarationContext::TopLevel => match vis {
                Visibility::Public => "export ",
                _ => "",
            },
            // JavaScript has no member visibility keywords.
            // Use #name convention for private fields.
            DeclarationContext::Member => "",
        }
    }

    fn function_keyword(&self, ctx: DeclarationContext) -> &str {
        match ctx {
            DeclarationContext::TopLevel => "function",
            DeclarationContext::Member => "",
        }
    }

    fn type_keyword(&self, kind: TypeKind) -> &str {
        match kind {
            TypeKind::Class | TypeKind::Struct => "class",
            TypeKind::Interface | TypeKind::Trait => "class",
            TypeKind::Enum => "class",
            TypeKind::TypeAlias | TypeKind::Newtype => "class",
        }
    }

    fn methods_inside_type_body(&self, _kind: TypeKind) -> bool {
        true
    }

    // --- Config struct accessors ---

    fn type_presentation(&self) -> TypePresentationConfig<'_> {
        TypePresentationConfig {
            tuple: TypePresentation::Delimited {
                open: "[",
                sep: ", ",
                close: "]",
            },
            ..Default::default()
        }
    }

    fn generic_syntax(&self) -> GenericSyntaxConfig<'_> {
        GenericSyntaxConfig {
            constraint_keyword: "",
            constraint_separator: "",
            context_bound_keyword: "",
            ..Default::default()
        }
    }

    fn block_syntax(&self) -> BlockSyntaxConfig<'_> {
        BlockSyntaxConfig {
            indent_unit: &self.indent,
            uses_semicolons: self.semicolons,
            field_terminator: ";",
            ..Default::default()
        }
    }

    fn function_syntax(&self) -> FunctionSyntaxConfig<'_> {
        FunctionSyntaxConfig {
            abstract_keyword: "",
            ..Default::default()
        }
    }

    fn type_decl_syntax(&self) -> TypeDeclSyntaxConfig<'_> {
        TypeDeclSyntaxConfig {
            super_type_keyword: " extends ",
            ..Default::default()
        }
    }

    fn enum_and_annotation(&self) -> EnumAndAnnotationConfig<'_> {
        EnumAndAnnotationConfig {
            variant_separator: "",
            ..Default::default()
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_file_extension() {
        let js = JavaScript::new();
        assert_eq!(js.file_extension(), "js");
    }

    #[test]
    fn test_esm_extension() {
        let js = JavaScript::esm();
        assert_eq!(js.file_extension(), "mjs");
    }

    #[test]
    fn test_cjs_extension() {
        let js = JavaScript::cjs();
        assert_eq!(js.file_extension(), "cjs");
    }

    #[test]
    fn test_escape_reserved() {
        let js = JavaScript::new();
        assert_eq!(js.escape_reserved("class"), "class_");
        assert_eq!(js.escape_reserved("async"), "async_");
        assert_eq!(js.escape_reserved("yield"), "yield_");
        assert_eq!(js.escape_reserved("myVar"), "myVar");
        // TS-specific keywords are NOT reserved in JS.
        assert_eq!(js.escape_reserved("type"), "type");
        assert_eq!(js.escape_reserved("interface"), "interface_");
        assert_eq!(js.escape_reserved("any"), "any");
        assert_eq!(js.escape_reserved("string"), "string");
    }

    #[test]
    fn test_render_imports_basic() {
        let js = JavaScript::new();
        let imports = ImportGroup {
            entries: vec![ImportEntry {
                module: "./utils".into(),
                name: "formatDate".into(),
                alias: None,
                is_type_only: false,
                is_side_effect: false,
                is_wildcard: false,
            }],
        };
        assert_eq!(
            js.render_imports(&imports),
            "import { formatDate } from './utils';"
        );
    }

    #[test]
    fn test_render_imports_no_import_type() {
        let js = JavaScript::new();
        let imports = ImportGroup {
            entries: vec![
                ImportEntry {
                    module: "./models".into(),
                    name: "User".into(),
                    alias: None,
                    is_type_only: true, // Should be ignored in JS.
                    is_side_effect: false,
                    is_wildcard: false,
                },
                ImportEntry {
                    module: "./models".into(),
                    name: "createUser".into(),
                    alias: None,
                    is_type_only: false,
                    is_side_effect: false,
                    is_wildcard: false,
                },
            ],
        };
        let output = js.render_imports(&imports);
        // Both should be in a single import statement, no `import type`.
        assert_eq!(output, "import { User, createUser } from './models';");
        assert!(!output.contains("import type"));
    }

    #[test]
    fn test_render_imports_with_alias() {
        let js = JavaScript::new();
        let imports = ImportGroup {
            entries: vec![ImportEntry {
                module: "./other".into(),
                name: "User".into(),
                alias: Some("OtherUser".into()),
                is_type_only: false,
                is_side_effect: false,
                is_wildcard: false,
            }],
        };
        assert_eq!(
            js.render_imports(&imports),
            "import { User as OtherUser } from './other';"
        );
    }

    #[test]
    fn test_render_imports_multiple_modules() {
        let js = JavaScript::new();
        let imports = ImportGroup {
            entries: vec![
                ImportEntry {
                    module: "./models".into(),
                    name: "User".into(),
                    alias: None,
                    is_type_only: false,
                    is_side_effect: false,
                    is_wildcard: false,
                },
                ImportEntry {
                    module: "./utils".into(),
                    name: "format".into(),
                    alias: None,
                    is_type_only: false,
                    is_side_effect: false,
                    is_wildcard: false,
                },
            ],
        };
        let output = js.render_imports(&imports);
        let lines: Vec<&str> = output.lines().collect();
        assert_eq!(lines.len(), 2);
        assert_eq!(lines[0], "import { User } from './models';");
        assert_eq!(lines[1], "import { format } from './utils';");
    }

    #[test]
    fn test_render_imports_no_semicolons() {
        let js = JavaScript {
            semicolons: false,
            ..Default::default()
        };
        let imports = ImportGroup {
            entries: vec![ImportEntry {
                module: "./utils".into(),
                name: "format".into(),
                alias: None,
                is_type_only: false,
                is_side_effect: false,
                is_wildcard: false,
            }],
        };
        assert_eq!(
            js.render_imports(&imports),
            "import { format } from './utils'"
        );
    }

    #[test]
    fn test_doc_comment_single() {
        let js = JavaScript::new();
        let doc = js.render_doc_comment(&["A brief description."]);
        assert!(doc.starts_with("/**\n"));
        assert!(doc.contains(" * A brief description.\n"));
        assert!(doc.ends_with(" */"));
    }

    #[test]
    fn test_doc_comment_multi() {
        let js = JavaScript::new();
        let doc = js.render_doc_comment(&["Get user.", "", "Returns null if not found."]);
        assert!(doc.contains(" * Get user.\n"));
        assert!(doc.contains(" *\n"));
        assert!(doc.contains(" * Returns null if not found.\n"));
    }

    #[test]
    fn test_string_literal_single_quotes() {
        let js = JavaScript::new();
        assert_eq!(js.render_string_literal("hello"), "'hello'");
        assert_eq!(js.render_string_literal("it's"), "'it\\'s'");
    }

    #[test]
    fn test_string_literal_double_quotes() {
        let js = JavaScript::new().with_quote_style(QuoteStyle::Double);
        assert_eq!(js.render_string_literal("hello"), "\"hello\"");
    }

    #[test]
    fn test_javascript_builder_fluent() {
        let js = JavaScript::new()
            .with_semicolons(false)
            .with_quote_style(QuoteStyle::Double)
            .with_extension("mjs")
            .with_indent("    ");
        assert!(!js.block_syntax().uses_semicolons);
        assert_eq!(js.file_extension(), "mjs");
        assert_eq!(js.block_syntax().indent_unit, "    ");
        assert_eq!(js.render_string_literal("hi"), "\"hi\"");
    }

    #[test]
    fn test_visibility_top_level() {
        let js = JavaScript::new();
        assert_eq!(
            js.render_visibility(Visibility::Public, DeclarationContext::TopLevel),
            "export "
        );
        assert_eq!(
            js.render_visibility(Visibility::Private, DeclarationContext::TopLevel),
            ""
        );
    }

    #[test]
    fn test_visibility_member() {
        let js = JavaScript::new();
        // JS has no member visibility keywords.
        assert_eq!(
            js.render_visibility(Visibility::Public, DeclarationContext::Member),
            ""
        );
        assert_eq!(
            js.render_visibility(Visibility::Private, DeclarationContext::Member),
            ""
        );
        assert_eq!(
            js.render_visibility(Visibility::Protected, DeclarationContext::Member),
            ""
        );
    }

    #[test]
    fn test_no_abstract() {
        let js = JavaScript::new();
        assert_eq!(js.function_syntax().abstract_keyword, "");
    }

    #[test]
    fn test_no_implements() {
        let js = JavaScript::new();
        assert_eq!(js.type_decl_syntax().implements_keyword, "");
    }

    #[test]
    fn test_type_keyword() {
        let js = JavaScript::new();
        assert_eq!(js.type_keyword(TypeKind::Class), "class");
        assert_eq!(js.type_keyword(TypeKind::Struct), "class");
        assert_eq!(js.type_keyword(TypeKind::Interface), "class");
        assert_eq!(js.type_keyword(TypeKind::Enum), "class");
    }
}