Searched refs:ret_expr (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/asmjs/
H A Dasm-typer.cc1383 if (auto* ret_expr = ret_stmt->expression()) {
1384 RECURSE(ret_expr_type = ValidateExpression(ret_expr));
1388 if (!ret_expr->IsUndefinedLiteral()) {
2753 AsmType* AsmTyper::ReturnTypeAnnotations(Expression* ret_expr) { argument
2754 DCHECK_NOT_NULL(ret_expr);
2756 if (auto* binop = ret_expr->AsBinaryOperation()) {
2762 FAIL(ret_expr, "Invalid return type annotation.");
2765 if (auto* call = ret_expr->AsCall()) {
2769 FAIL(ret_expr, "Invalid function call in return statement.");
2772 if (auto* literal = ret_expr
[all...]
H A Dasm-typer.h367 AsmType* ReturnTypeAnnotations(Expression* ret_expr);

Completed in 134 milliseconds