Merge pull request #1440 from c410-f3r/getters

Getters/Setters for fields
This commit is contained in:
Alex Crichton
2019-04-30 12:07:34 -05:00
committed by GitHub
13 changed files with 535 additions and 208 deletions

View File

@ -88,11 +88,10 @@ macro_rules! shared_api {
struct Export<'a> {
class: Option<&'a str>,
method: bool,
consumed: bool,
is_constructor: bool,
function: Function<'a>,
comments: Vec<&'a str>,
consumed: bool,
function: Function<'a>,
method_kind: MethodKind<'a>,
start: bool,
}