[][src]Struct trashcan::analysis::symtab::SymbolTable

pub struct SymbolTable { /* fields omitted */ }

The symbol table: scope -> (scope -> symbol|(ident -> symbol))

Methods

impl SymbolTable[src]

pub fn build(dumpster: &mut Dumpster) -> AnalysisResultMany<SymbolTable>[src]

pub fn symbol_at_path(
    &self,
    path: &Path,
    ctxt: NameCtxt,
    err_loc: &SrcLoc
) -> AnalysisResult<&Symbol>
[src]

pub fn dump<W: Write>(&self, out: &mut W, ind: usize) -> Result<()>[src]

pub fn add_value_entry(
    &mut self,
    ident: &Ident,
    module: &Ident,
    function: Option<&Ident>,
    ty: &Type,
    access: Access,
    err_loc: &SrcLoc
) -> AnalysisResult<()>
[src]

pub fn type_access(
    &self,
    ty: &Type,
    module: &Ident,
    err_loc: &SrcLoc
) -> AnalysisResult<Access>
[src]

Auto Trait Implementations

impl Send for SymbolTable

impl Sync for SymbolTable

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.