8 lines
105 B
JavaScript
Vendored
8 lines
105 B
JavaScript
Vendored
function A(v) {
|
|
this.v = v;
|
|
}
|
|
|
|
function bar(a, extLambda) {
|
|
return extLambda.call(a, 4, "boo")
|
|
}
|