Add docs to Type::vars and procs fields

This commit is contained in:
Tad Hardesty 2019-11-27 15:27:39 -08:00
parent 305e53b1cf
commit d982c94e9e

View file

@ -121,7 +121,9 @@ pub struct Type {
pub path: String,
pub location: Location,
location_specificity: usize,
/// Variables which this type has declarations or overrides for.
pub vars: LinkedHashMap<String, TypeVar>,
/// Procs and verbs which this type has declarations or overrides for.
pub procs: LinkedHashMap<String, TypeProc>,
parent_type: NodeIndex,
pub docs: DocCollection,