Chromium Code Reviews| Index: src/typing-asm.h |
| diff --git a/src/typing-asm.h b/src/typing-asm.h |
| index b7f53831e6222d96d6552351d55fa7bd7e235db7..63e204e50a7cdac4cdcc128098b622845ea01754 100644 |
| --- a/src/typing-asm.h |
| +++ b/src/typing-asm.h |
| @@ -113,6 +113,7 @@ class AsmTyper : public AstVisitor { |
| bool in_function_; // In module function? |
| bool building_function_tables_; |
| + bool visiting_exports_; |
| TypeCache const& cache_; |
| @@ -161,6 +162,8 @@ class AsmTyper : public AstVisitor { |
| void VisitLiteral(Literal* expr, bool is_return); |
| + void VisitVariableProxy(VariableProxy* expr, bool assignment); |
|
aseemgarg
2016/01/28 23:09:59
make this private?
bradn
2016/01/29 01:03:38
It is?
|
| + |
| void VisitIntegerBitwiseOperator(BinaryOperation* expr, Type* left_expected, |
| Type* right_expected, Type* result_type, |
| bool conversion); |