biome_js_formatter 0.0.2

Biome's JavaScript formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file.

use crate::prelude::*;
use biome_js_syntax::AnyJsBindingPattern;
#[derive(Debug, Clone, Default)]
pub(crate) struct FormatAnyJsBindingPattern;
impl FormatRule<AnyJsBindingPattern> for FormatAnyJsBindingPattern {
    type Context = JsFormatContext;
    fn fmt(&self, node: &AnyJsBindingPattern, f: &mut JsFormatter) -> FormatResult<()> {
        match node {
            AnyJsBindingPattern::AnyJsBinding(node) => node.format().fmt(f),
            AnyJsBindingPattern::JsArrayBindingPattern(node) => node.format().fmt(f),
            AnyJsBindingPattern::JsObjectBindingPattern(node) => node.format().fmt(f),
        }
    }
}