[][src]Trait llir::values::GetDebugLoc

pub trait GetDebugLoc {
    fn filename(&self) -> Option<String>;
fn line(&self) -> Option<u32>;
fn col(&self) -> Option<u32>; fn debug_loc_string(&self) -> String { ... } }

GetDebugLoc trait is implemented when there's debug location with respect to a value

Required methods

fn filename(&self) -> Option<String>

fn line(&self) -> Option<u32>

fn col(&self) -> Option<u32>

Loading content...

Provided methods

Loading content...

Implementors

impl<'ctx> GetDebugLoc for Function<'ctx>[src]

impl<'ctx, V> GetDebugLoc for V where
    V: InstructionDebugLoc + ValueRef, 
[src]

Loading content...