Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #ifndef RUNTIME_VM_OPTIMIZER_H_ | |
| 6 #define RUNTIME_VM_OPTIMIZER_H_ | |
| 7 | |
| 8 #include "vm/globals.h" | |
| 9 | |
| 10 #include "vm/growable_array.h" | |
| 11 | |
| 12 namespace dart { | |
| 13 | |
| 14 class Optimizer { | |
| 15 public: | |
| 16 static bool TryExpandTestCidsResult(ZoneGrowableArray<intptr_t>* results, | |
|
Vyacheslav Egorov (Google)
2017/05/23 16:00:32
Maybe this function name needs to reflect more clo
erikcorry
2017/05/24 13:37:16
Done.
| |
| 17 const AbstractType& type, | |
| 18 bool int_type_only); | |
| 19 }; | |
| 20 | |
| 21 } // namespace dart | |
| 22 | |
| 23 #endif // RUNTIME_VM_OPTIMIZER_H_ | |
| OLD | NEW |