| Index: runtime/vm/intermediate_language.h
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.h (revision 20548)
|
| +++ runtime/vm/intermediate_language.h (working copy)
|
| @@ -2421,7 +2421,7 @@
|
| virtual void EmitBranchCode(FlowGraphCompiler* compiler,
|
| BranchInstr* branch) = 0;
|
|
|
| - private:
|
| + protected:
|
| Token::Kind kind_;
|
| };
|
|
|
| @@ -2499,6 +2499,7 @@
|
|
|
| bool needs_number_check() const { return needs_number_check_; }
|
| void set_needs_number_check(bool value) { needs_number_check_ = value; }
|
| + void set_kind(Token::Kind value) { kind_ = value; }
|
|
|
| private:
|
| // True if the comparison must check for double, Mint or Bigint and
|
|
|