| Index: src/typing-asm.h
|
| diff --git a/src/typing-asm.h b/src/typing-asm.h
|
| index bd0a09b063c50cb2a038f922f5e2195a0f47b96a..db1e2bbf6d4948f82d935d79b62caf2b30c62cd5 100644
|
| --- a/src/typing-asm.h
|
| +++ b/src/typing-asm.h
|
| @@ -65,11 +65,11 @@ class AsmTyper : public AstVisitor {
|
| void VisitDeclarations(ZoneList<Declaration*>* d) override;
|
| void VisitStatements(ZoneList<Statement*>* s) override;
|
|
|
| - void VisitExpressionAnnotation(Expression* e, bool is_return);
|
| + void VisitExpressionAnnotation(Expression* e, Variable* var, bool is_return);
|
| void VisitFunctionAnnotation(FunctionLiteral* f);
|
| void VisitAsmModule(FunctionLiteral* f);
|
|
|
| - void VisitHeapAccess(Property* expr);
|
| + void VisitHeapAccess(Property* expr, bool assigning, Type* assignment_type);
|
|
|
| int ElementShiftSize(Type* type);
|
| Type* StorageType(Type* type);
|
|
|