5686de7e09
- Fix expect/actual default arguments - Fix dynamic type in inliner - Fix external varargs
14 lines
278 B
JavaScript
Vendored
14 lines
278 B
JavaScript
Vendored
define("lib", [], function() {
|
|
function A(x) {
|
|
this.x = x;
|
|
}
|
|
A.prototype.foo = function (y) {
|
|
return this.x + y;
|
|
};
|
|
|
|
A.prototype.bar = function() {
|
|
return "(" + Array.prototype.join.call(arguments, "") + ")";
|
|
};
|
|
|
|
return A;
|
|
}); |