pub fn source_from_path(path: &Path) -> Result<SourceText, OakError>Expand description
Reads source text from a file path.
This function reads the contents of a file and creates a SourceText.
§Arguments
path- The file system path to read from
§Returns
A Result containing the SourceText if successful, or an OakError if reading fails
§Examples
ⓘ
let path = std::path::Path::new("source.rs");
let source = source_from_path(path)?;