improve debug formatting for Scope and FunctionData
This commit is contained in:
parent
68da1f4e12
commit
2185206f1b
|
@ -1,9 +1,12 @@
|
||||||
//! The transpile module is responsible for transpiling the abstract syntax tree into a data pack.
|
//! The transpile module is responsible for transpiling the abstract syntax tree into a data pack.
|
||||||
|
|
||||||
use std::collections::{BTreeMap, HashMap};
|
use std::{
|
||||||
|
collections::{BTreeMap, HashMap},
|
||||||
|
fmt::Debug,
|
||||||
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
base::source_file::Span,
|
base::source_file::{SourceElement, Span},
|
||||||
syntax::syntax_tree::{expression::Expression, statement::Statement, AnnotationValue},
|
syntax::syntax_tree::{expression::Expression, statement::Statement, AnnotationValue},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -28,7 +31,7 @@ mod variables;
|
||||||
|
|
||||||
pub mod util;
|
pub mod util;
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
#[derive(Clone, PartialEq, Eq)]
|
||||||
pub(super) struct FunctionData {
|
pub(super) struct FunctionData {
|
||||||
pub(super) namespace: String,
|
pub(super) namespace: String,
|
||||||
pub(super) identifier_span: Span,
|
pub(super) identifier_span: Span,
|
||||||
|
@ -69,3 +72,55 @@ impl From<Option<AnnotationValue>> for TranspileAnnotationValue {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Debug for FunctionData {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
let mut s = f.debug_struct("FunctionData");
|
||||||
|
|
||||||
|
struct HiddenList;
|
||||||
|
impl Debug for HiddenList {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
let mut list = f.debug_list();
|
||||||
|
list.finish_non_exhaustive()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AnnotationsWrapper<'a, I>(&'a I);
|
||||||
|
impl<'a, I> Debug for AnnotationsWrapper<'a, I>
|
||||||
|
where
|
||||||
|
&'a I: IntoIterator<Item = (&'a String, &'a TranspileAnnotationValue)>,
|
||||||
|
{
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
struct AnnotationValueWrapper<'a>(&'a TranspileAnnotationValue);
|
||||||
|
impl<'a> Debug for AnnotationValueWrapper<'a> {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
match self.0 {
|
||||||
|
TranspileAnnotationValue::None => None::<u8>.fmt(f),
|
||||||
|
TranspileAnnotationValue::Expression(expr) => expr.span().str().fmt(f),
|
||||||
|
TranspileAnnotationValue::Map(map) => AnnotationsWrapper(map).fmt(f),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut m = f.debug_map();
|
||||||
|
|
||||||
|
m.entries(
|
||||||
|
self.0
|
||||||
|
.into_iter()
|
||||||
|
.map(|(k, v)| (k, AnnotationValueWrapper(v))),
|
||||||
|
);
|
||||||
|
|
||||||
|
m.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
s.field("namespace", &self.namespace);
|
||||||
|
s.field("identifier", &self.identifier_span.str());
|
||||||
|
s.field("public", &self.public);
|
||||||
|
s.field("parameters", &self.parameters);
|
||||||
|
s.field("statements", &HiddenList);
|
||||||
|
s.field("annotations", &AnnotationsWrapper(&self.annotations));
|
||||||
|
|
||||||
|
s.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -727,7 +727,7 @@ impl Transpiler {
|
||||||
}
|
}
|
||||||
|
|
||||||
scope.set_variable(
|
scope.set_variable(
|
||||||
&name,
|
single.identifier().span.str(),
|
||||||
VariableType::ScoreboardValue {
|
VariableType::ScoreboardValue {
|
||||||
objective: name.clone(),
|
objective: name.clone(),
|
||||||
target,
|
target,
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
collections::HashMap,
|
collections::HashMap,
|
||||||
|
fmt::Debug,
|
||||||
|
ops::Deref,
|
||||||
sync::{Arc, OnceLock, RwLock},
|
sync::{Arc, OnceLock, RwLock},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -42,7 +44,7 @@ pub enum VariableType {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Default)]
|
#[derive(Default)]
|
||||||
pub struct Scope<'a> {
|
pub struct Scope<'a> {
|
||||||
parent: Option<&'a Arc<Self>>,
|
parent: Option<&'a Arc<Self>>,
|
||||||
variables: RwLock<HashMap<String, Arc<VariableType>>>,
|
variables: RwLock<HashMap<String, Arc<VariableType>>>,
|
||||||
|
@ -87,6 +89,24 @@ impl<'a> Scope<'a> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<'a> Debug for Scope<'a> {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
let mut s = f.debug_struct("Scope");
|
||||||
|
s.field("parent", &self.parent);
|
||||||
|
|
||||||
|
struct VariableWrapper<'a>(&'a RwLock<HashMap<String, Arc<VariableType>>>);
|
||||||
|
impl<'a> Debug for VariableWrapper<'a> {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
let s = self.0.read().unwrap();
|
||||||
|
s.deref().fmt(f)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
s.field("variables", &VariableWrapper(&self.variables));
|
||||||
|
s.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl Transpiler {}
|
impl Transpiler {}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
Loading…
Reference in New Issue