blob: 1d9147415e28631ef9ece77790686715d7692cfd [file] [log] [blame] [edit]
var asm = (function(global, env, buffer) {
"use asm";
function a()
{
return 0;
}
function b()
{
return 0;
}
function c()
{
a();
return;
}
function d()
{
b();
// We expect that b gets replaced by a below
var f = {
g: b
};
e();
return;
}
})(Module.asmGlobalArg, Module.asmLibraryArg, buffer);
// {"b":"a"}