| Index: src/compiler.h
|
| diff --git a/src/compiler.h b/src/compiler.h
|
| index 7f15b6f567544416b82a11e0f6888bbc548b780a..56de2b60aec47c7aee914e95bfc445137b75aac6 100644
|
| --- a/src/compiler.h
|
| +++ b/src/compiler.h
|
| @@ -384,14 +384,6 @@
|
|
|
| Handle<Code> GenerateCodeStub();
|
|
|
| - typedef ZoneVector<Handle<SharedFunctionInfo>> InlinedFunctionList;
|
| - InlinedFunctionList const& inlined_functions() const {
|
| - return inlined_functions_;
|
| - }
|
| - void AddInlinedFunction(Handle<SharedFunctionInfo> inlined_function) {
|
| - inlined_functions_.push_back(inlined_function);
|
| - }
|
| -
|
| protected:
|
| ParseInfo* parse_info_;
|
|
|
| @@ -465,8 +457,6 @@
|
| List<OffsetRange>* no_frame_ranges_;
|
| std::vector<InlinedFunctionInfo> inlined_function_infos_;
|
| bool track_positions_;
|
| -
|
| - InlinedFunctionList inlined_functions_;
|
|
|
| // A copy of shared_info()->opt_count() to avoid handle deref
|
| // during graph optimization.
|
|
|