Searched refs:fun_export (Results 1 - 2 of 2) 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...]
H A Dasm-typer.h278 AsmType* ExportType(VariableProxy* fun_export);

Completed in 59 milliseconds