REPLACE THIS TEXT WITH BUG DESCRIPTION
URL: ../../docs/api_reference/module
var Module = {
'print': function(text) { alert('stdout: ' + text) }
'printErr': function(text) { alert('stderr: ' + text) }
};
Missing a comma (,) in 2nd line:
var Module = {
'print': function(text) { alert('stdout: ' + text) },
'printErr': function(text) { alert('stderr: ' + text) }
};