natter/src/intermediate/src_block.rs

23 lines
554 B
Rust
Raw Normal View History

2023-10-27 17:08:58 -04:00
use crate::error::CustomError;
use super::registry::Registry;
#[derive(Debug)]
pub(crate) struct ISrcBlock {
pub(crate) lines: Vec<String>,
}
2023-10-27 17:08:58 -04:00
impl ISrcBlock {
2023-10-29 12:15:07 -04:00
pub(crate) async fn new<'intermediate, 'parse>(
registry: &mut Registry<'intermediate, 'parse>,
2023-10-27 17:08:58 -04:00
original: &organic::types::SrcBlock<'parse>,
) -> Result<ISrcBlock, CustomError> {
2023-10-29 10:32:05 -04:00
let lines = original
.contents
.split_inclusive('\n')
2023-10-29 10:32:05 -04:00
.map(|s| s.to_owned())
.collect();
Ok(ISrcBlock { lines })
2023-10-27 17:08:58 -04:00
}
}