Skip to content
Snippets Groups Projects

Draft: Interpreter, Tests, Debug Info, Misc.

Closed Xavier Routh requested to merge debug_info into main
Compare and
39 files
+ 2852
277
Compare changes
  • Side-by-side
  • Inline
Files
39
+ 2
1
use std::collections::HashMap;
use std::{collections::HashMap, marker::PhantomData};
use crate::*;
@@ -414,6 +414,7 @@ impl<'a> Builder<'a> {
return_type,
nodes: vec![Node::Start],
num_dynamic_constants,
debug_info: None,
});
Ok((id, NodeID::new(0)))
}
Loading