clang-rs
clang-rs copied to clipboard
Location information for Types
Hi,
Is there any possibility to access the location information for a type? I'm doing roughly the following:
fn_entity
.get_type().unwrap()
.get_argument_types().unwrap()
.into_iter()
.for_each(|t:Type| {
// get location information for 'type' here
})
Thanks a lot, Sebastian.