aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2022-12-30 15:36:23 +0000
committerFederico Igne <git@federicoigne.com>2022-12-30 15:36:23 +0000
commit481b08d9297e16e7c8eb29defc1a8b3302b937e5 (patch)
treed7751e6142635ec0cd5f06b267ef39b54eb12f00
parenta39e120e3fa6723c7ad8c4d27afca79233947935 (diff)
downloadpangler-481b08d9297e16e7c8eb29defc1a8b3302b937e5.tar.gz
pangler-481b08d9297e16e7c8eb29defc1a8b3302b937e5.zip
qol: print name of missing macro on panic
-rw-r--r--README.md5
-rw-r--r--src/main.rs5
2 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index b876bb8..94f4a43 100644
--- a/README.md
+++ b/README.md
@@ -441,7 +441,7 @@ In case we reach the maximum allowed depth we truncate code block substitution a
441 if current_depth < max_depth { 441 if current_depth < max_depth {
442 let block = blocks 442 let block = blocks
443 .get(&Key::Macro(caps[2].to_string())) 443 .get(&Key::Macro(caps[2].to_string()))
444 .expect("Block not present") 444 .unwrap_or_else(|| panic!("Block \"{}\" not present", caps[2].to_string()))
445 .clone(); 445 .clone();
446 indent(block, caps[1].len()) 446 indent(block, caps[1].len())
447 } else { 447 } else {
@@ -521,8 +521,7 @@ let file = base
521 .clone() 521 .clone()
522 .unwrap_or(PathBuf::from(BASE)) 522 .unwrap_or(PathBuf::from(BASE))
523 .join(path); 523 .join(path);
524write_to_file(file, &code) 524write_to_file(file, &code).unwrap();
525 .expect("Unable to write to file");
526``` 525```
527 526
528## Additional details 527## Additional details
diff --git a/src/main.rs b/src/main.rs
index 8168ad8..1d6bdd4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -70,7 +70,7 @@ fn build(
70 if current_depth < max_depth { 70 if current_depth < max_depth {
71 let block = blocks 71 let block = blocks
72 .get(&Key::Macro(caps[2].to_string())) 72 .get(&Key::Macro(caps[2].to_string()))
73 .expect("Block not present") 73 .unwrap_or_else(|| panic!("Block \"{}\" not present", caps[2].to_string()))
74 .clone(); 74 .clone();
75 indent(block, caps[1].len()) 75 indent(block, caps[1].len())
76 } else { 76 } else {
@@ -88,8 +88,7 @@ fn build(
88 .clone() 88 .clone()
89 .unwrap_or(PathBuf::from(BASE)) 89 .unwrap_or(PathBuf::from(BASE))
90 .join(path); 90 .join(path);
91 write_to_file(file, &code) 91 write_to_file(file, &code).unwrap();
92 .expect("Unable to write to file");
93 }) 92 })
94} 93}
95 94