Chromium Code Reviews| Index: src/factory.h |
| =================================================================== |
| --- src/factory.h (revision 1984) |
| +++ src/factory.h (working copy) |
| @@ -29,6 +29,7 @@ |
| #define V8_FACTORY_H_ |
| #include "heap.h" |
| +#include "zone-inl.h" |
| namespace v8 { namespace internal { |
| @@ -202,7 +203,8 @@ |
| Handle<JSFunction> boilerplate, |
| Handle<Context> context); |
| - static Handle<Code> NewCode(const CodeDesc& desc, ScopeInfo<>* sinfo, |
| + static Handle<Code> NewCode(const CodeDesc& desc, |
| + ZoneScopeInfo* sinfo, |
| Code::Flags flags, Handle<Object> self_reference); |
|
Kevin Millikin (Chromium)
2009/05/18 09:16:19
Newline before the Handle<Object>.
|
| static Handle<Code> CopyCode(Handle<Code> code); |