laburnum-syntax-macro 0.1.1

Proc-macros for defining CST and AST node types in language frontends built with the laburnum LSP framework.
Documentation
---
source: crates/laburnum-syntax-macro/src/tests/cst_tests.rs
expression: "use laburnum_syntax_macro::tests::cst_tests::test_cst_private_struct"
snapshot_kind: text
---
Input: >
  #[laburnum_syntax(CST)]
  struct PrivateCST {
      span: Span,
      field: NodeId,
  }

Output: >
  #[derive(Clone, PartialEq)]
  pub struct PrivateCST {
      pub span: laburnum::Span,
      pub field: NodeId,
  }
  impl PrivateCST {
      pub fn span(&self) -> laburnum::Span {
          self.span
      }
  }
  #[allow(unused)]
  impl std::fmt::Display for PrivateCST {
      fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
          f.debug_struct(
                  &format!(
                      "{}::{}", { let __mp = module_path!(); let __stripped = __mp
                      .find("::").map(| i | & __mp[i + 2..]).unwrap_or(__mp); if let
                      Some(__last_sep) = __stripped.rfind("::") { let __last_seg = &
                      __stripped[__last_sep + 2..]; let __name = stringify!(PrivateCST);
                      let __seg_norm : std::string::String = __last_seg.chars().filter(| c
                      | * c != '_').collect(); let __name_norm : std::string::String =
                      __name.chars().filter(| c | * c != '_').collect(); if __seg_norm
                      .eq_ignore_ascii_case(& __name_norm) { & __stripped[..__last_sep] }
                      else { __stripped } } else { __stripped } }, stringify!(PrivateCST)
                  ),
              )
              .field("span", &self.span)
              .finish()
      }
  }
  #[allow(unused)]
  impl std::fmt::Debug for PrivateCST {
      fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
          f.debug_struct(
                  &format!(
                      "{}::{}", { let __mp = module_path!(); let __stripped = __mp
                      .find("::").map(| i | & __mp[i + 2..]).unwrap_or(__mp); if let
                      Some(__last_sep) = __stripped.rfind("::") { let __last_seg = &
                      __stripped[__last_sep + 2..]; let __name = stringify!(PrivateCST);
                      let __seg_norm : std::string::String = __last_seg.chars().filter(| c
                      | * c != '_').collect(); let __name_norm : std::string::String =
                      __name.chars().filter(| c | * c != '_').collect(); if __seg_norm
                      .eq_ignore_ascii_case(& __name_norm) { & __stripped[..__last_sep] }
                      else { __stripped } } else { __stripped } }, stringify!(PrivateCST)
                  ),
              )
              .field("span", &self.span)
              .finish()
      }
  }
  #[allow(unused)]
  impl bluegum::Bluegum for PrivateCST {
      fn node(&self, b: &mut bluegum::Builder) {
          use owo_colors::OwoColorize;
          b.name(
                  &format!(
                      "{}::{}", { let __mp = module_path!(); let __stripped = __mp
                      .find("::").map(| i | & __mp[i + 2..]).unwrap_or(__mp); if let
                      Some(__last_sep) = __stripped.rfind("::") { let __last_seg = &
                      __stripped[__last_sep + 2..]; let __name = stringify!(PrivateCST);
                      let __seg_norm : std::string::String = __last_seg.chars().filter(| c
                      | * c != '_').collect(); let __name_norm : std::string::String =
                      __name.chars().filter(| c | * c != '_').collect(); if __seg_norm
                      .eq_ignore_ascii_case(& __name_norm) { & __stripped[..__last_sep] }
                      else { __stripped } } else { __stripped } }, stringify!(PrivateCST)
                  ),
              )
              .debug("span", self.span);
      }
  }
  #[allow(unused)]
  impl bluegum::BluegumWithState<crate::Printer<'_>> for PrivateCST {
      fn node_with_state(&self, b: &mut bluegum::Builder, state: &crate::Printer<'_>) {
          use owo_colors::OwoColorize;
          use unicode_width::UnicodeWidthStr;
          b.name(
                  &format!(
                      "{}::{}", { let __mp = module_path!(); let __stripped = __mp
                      .find("::").map(| i | & __mp[i + 2..]).unwrap_or(__mp); if let
                      Some(__last_sep) = __stripped.rfind("::") { let __last_seg = &
                      __stripped[__last_sep + 2..]; let __name = stringify!(PrivateCST);
                      let __seg_norm : std::string::String = __last_seg.chars().filter(| c
                      | * c != '_').collect(); let __name_norm : std::string::String =
                      __name.chars().filter(| c | * c != '_').collect(); if __seg_norm
                      .eq_ignore_ascii_case(& __name_norm) { & __stripped[..__last_sep] }
                      else { __stripped } } else { __stripped } }, stringify!(PrivateCST)
                  ),
              )
              .debug("span", self.span);
          {
              let field = &self.field;
              let mut t = bluegum::Builder::new();
              t.name("Literal");
              let s = format!("{}", field);
              if s.width() > 80 {
                  t.alt(format!("{:.80}...", s).bright_green());
              } else {
                  t.alt(format!("{:.80}", s).bright_green());
              };
              b.add_named_builder(stringify!(field), t);
          };
      }
  }