Export ValueLocRange and DisplayFunctionAnnotations::default()

This commit is contained in:
bjorn3
2019-05-14 15:54:04 +02:00
committed by Benjamin Bouvier
parent a0ddbf403c
commit edd2bf12fd
3 changed files with 6 additions and 2 deletions

View File

@@ -11,8 +11,11 @@ use std::vec::Vec;
/// Value location range.
#[derive(Debug, Clone, Copy)]
pub struct ValueLocRange {
/// The ValueLoc containing a ValueLabel during this range.
pub loc: ValueLoc,
/// The start of the range.
pub start: u32,
/// The end of the range.
pub end: u32,
}