Chromium Code Reviews| Index: runtime/vm/compiler.h |
| diff --git a/runtime/vm/compiler.h b/runtime/vm/compiler.h |
| index 50524b6dabb4b7b7eb93880e08cdb8c04346fc1c..cb06bc7cacf9a8b324cd6ba08ca67619b1072d39 100644 |
| --- a/runtime/vm/compiler.h |
| +++ b/runtime/vm/compiler.h |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| @@ -58,6 +58,8 @@ class Compiler : public AllStatic { |
| // |
| // Returns Error::null() if there is no compilation error. |
| static RawError* CompileAllFunctions(const Class& cls); |
| + |
| + static RawArray* ExtractTypeFeedbackArray(const Code& code); |
|
Kevin Millikin (Google)
2012/09/18 11:01:55
It seems better to move this to a member function
zerny-google
2012/09/18 11:53:07
Done.
|
| }; |
| } // namespace dart |