Some docs for functions in the parsing/codegen crates.

This commit is contained in:
Richard Dodd
2018-07-25 11:42:01 +01:00
parent 2ee80a6c44
commit ba67089501
5 changed files with 95 additions and 9 deletions

View File

@ -36,7 +36,9 @@ pub struct Export {
pub constructor: Option<String>,
/// The rust function
pub function: Function,
///
pub comments: Vec<String>,
/// The name of the rust object the function belongs to TODO is this correct?
pub rust_name: Ident,
}