Searched defs:fun_export (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/asmjs/
H A Dasm-typer.cc945 AsmType* AsmTyper::ExportType(VariableProxy* fun_export) { argument
946 auto* fun_info = Lookup(fun_export->var());
948 FAIL(fun_export, "Undefined identifier in asm.js module export.");
952 FAIL(fun_export, "Module cannot export standard library functions.");
957 FAIL(fun_export, "Module cannot export foreign functions.");
961 FAIL(fun_export, "Module cannot export function tables.");
965 FAIL(fun_export, "Module export is not an asm.js function.");
968 if (!fun_export->var()->is_function()) {
969 FAIL(fun_export, "Module exports must be function declarations.");
978 if (auto* fun_export
[all...]

Completed in 125 milliseconds