[][src]Struct sixtyfps_compilerlib::typeloader::TypeLoader

pub struct TypeLoader<'a> {
    pub global_type_registry: Rc<RefCell<TypeRegister>>,
    pub compiler_config: &'a CompilerConfiguration,
    pub builtin_library: Option<&'a VirtualDirectory<'a>>,
    // some fields omitted
}

Fields

global_type_registry: Rc<RefCell<TypeRegister>>compiler_config: &'a CompilerConfigurationbuiltin_library: Option<&'a VirtualDirectory<'a>>

Implementations

impl<'a> TypeLoader<'a>[src]

pub fn new(
    global_type_registry: Rc<RefCell<TypeRegister>>,
    compiler_config: &'a CompilerConfiguration,
    diag: &mut BuildDiagnostics
) -> Self
[src]

pub async fn load_dependencies_recursively(
    &mut self,
    doc: &Document,
    diagnostics: &mut FileDiagnostics,
    build_diagnostics: &mut BuildDiagnostics,
    registry_to_populate: &Rc<RefCell<TypeRegister>>
)
[src]

pub async fn import_type(
    &mut self,
    file_to_import: &str,
    type_name: &str,
    diagnostics: &mut FileDiagnostics,
    build_diagnostics: &mut BuildDiagnostics
) -> Option<Type>
[src]

pub async fn load_file(
    &mut self,
    path: &Path,
    source_path: SourceFile,
    source_code: String,
    build_diagnostics: &mut BuildDiagnostics
)
[src]

Load a file, and its dependency not run the passes.

the path must be the canonical path

pub fn get_document(&self, path: &Path) -> Option<&Document>[src]

Return a document if it was already loaded

Auto Trait Implementations

impl<'a> !RefUnwindSafe for TypeLoader<'a>[src]

impl<'a> !Send for TypeLoader<'a>[src]

impl<'a> !Sync for TypeLoader<'a>[src]

impl<'a> Unpin for TypeLoader<'a>[src]

impl<'a> !UnwindSafe for TypeLoader<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.