[wip] support variadic javascript function parameters

This commit is contained in:
Richard Dodd
2018-08-18 22:15:29 +01:00
parent 57693ee11a
commit d9fd2147a0
6 changed files with 81 additions and 0 deletions

View File

@ -41,6 +41,7 @@ pub enum ImportKind {
pub struct ImportFunction {
pub shim: String,
pub catch: bool,
pub variadic: bool,
pub method: Option<MethodData>,
pub structural: bool,
pub function: Function,