Allow onDone for builder.slot()

This commit is contained in:
Patrick Steele-Idem 2015-12-16 21:36:11 -07:00
parent 86f7f406e4
commit 841a21e4e6

View File

@ -153,8 +153,8 @@ class Builder {
return new SelfInvokingFunction({params, args, body});
}
slot() {
return new Slot();
slot(onDone) {
return new Slot({onDone});
}
strictEquality(left, right) {