| Index: src/ast-numbering.h
|
| diff --git a/src/ast-numbering.h b/src/ast-numbering.h
|
| index ab97c22bdfea5c44b1f31a93efa86e3172e32c49..9835e906ef39d86cf6a4f590170cefddf9146fb2 100644
|
| --- a/src/ast-numbering.h
|
| +++ b/src/ast-numbering.h
|
| @@ -9,9 +9,16 @@ namespace v8 {
|
| namespace internal {
|
|
|
| namespace AstNumbering {
|
| +
|
| // Assign type feedback IDs and bailout IDs to an AST node tree.
|
| //
|
| bool Renumber(FunctionLiteral* function, Zone* zone);
|
| +
|
| +// The same as above, but also updating the AST node count, bailout reason, and
|
| +// dont_cache flag of the SharedFunctionInfo after the visit.
|
| +//
|
| +bool Renumber(FunctionLiteral* function, Handle<SharedFunctionInfo> shared,
|
| + Zone* zone);
|
| }
|
| }
|
| } // namespace v8::internal
|
|
|