Skip to content

Commit

Permalink
Remove dbg! statements from live code (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelishman authored Jan 17, 2024
1 parent 88211a6 commit 57407ee
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/oq3_semantics/src/syntax_to_semantics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -483,10 +483,7 @@ fn from_item(item: synast::Item, context: &mut Context) -> Option<asg::Stmt> {

synast::Item::VersionString(version_string) => {
let version = version_string.version().unwrap().version().unwrap();
dbg!(version.is_simple());
dbg!(version.clone());
let (p1, p2) = version.split_into_parts();
dbg!((p1, p2));
let _ = version.split_into_parts();
None
}

Expand Down

0 comments on commit 57407ee

Please sign in to comment.