Struct orecc_front::codebase::Codebase
source · pub struct Codebase { /* private fields */ }Expand description
Codebase. A struct that holds all your code in memory (codespan forces this)
Implementations§
source§impl Codebase
impl Codebase
sourcepub fn add(&mut self, name: String, source: String) -> usize
pub fn add(&mut self, name: String, source: String) -> usize
Add a file to the codebase, returning the handle that can be used to refer to it again.
sourcepub fn get(&self, file_id: usize) -> Result<&SimpleFile<String, Rc<str>>, Error>
pub fn get(&self, file_id: usize) -> Result<&SimpleFile<String, Rc<str>>, Error>
Get the file corresponding to the given id.
sourcepub fn emit(&mut self, diagnostic: Diagnostic<usize>)
pub fn emit(&mut self, diagnostic: Diagnostic<usize>)
Emit a diagnostic
pub fn files(&self) -> &Vec<SimpleFile<String, Rc<str>>>
Trait Implementations§
source§impl<'a> Files<'a> for Codebase
impl<'a> Files<'a> for Codebase
§type FileId = usize
type FileId = usize
A unique identifier for files in the file provider. This will be used
for rendering
diagnostic::Labels in the corresponding source files.source§fn line_index(&self, file_id: usize, byte_index: usize) -> Result<usize, Error>
fn line_index(&self, file_id: usize, byte_index: usize) -> Result<usize, Error>
The index of the line at the given byte index.
If the byte index is past the end of the file, returns the maximum line index in the file.
This means that this function only fails if the file is not present. Read more
source§fn line_range(
&self,
file_id: usize,
line_index: usize
) -> Result<Range<usize>, Error>
fn line_range( &self, file_id: usize, line_index: usize ) -> Result<Range<usize>, Error>
The byte range of line in the source of the file.
source§fn line_number(
&'a self,
id: Self::FileId,
line_index: usize
) -> Result<usize, Error>
fn line_number( &'a self, id: Self::FileId, line_index: usize ) -> Result<usize, Error>
The user-facing line number at the given line index.
It is not necessarily checked that the specified line index
is actually in the file. Read more
Auto Trait Implementations§
impl RefUnwindSafe for Codebase
impl !Send for Codebase
impl !Sync for Codebase
impl Unpin for Codebase
impl UnwindSafe for Codebase
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more