| Index: src/objects.h
|
| ===================================================================
|
| --- src/objects.h (revision 3711)
|
| +++ src/objects.h (working copy)
|
| @@ -3222,8 +3222,8 @@
|
| // this.x = y; where y is either a constant or refers to an argument.
|
| inline bool has_only_simple_this_property_assignments();
|
|
|
| - inline bool try_fast_codegen();
|
| - inline void set_try_fast_codegen(bool flag);
|
| + inline bool try_full_codegen();
|
| + inline void set_try_full_codegen(bool flag);
|
|
|
| // For functions which only contains this property assignments this provides
|
| // access to the names for the properties assigned.
|
| @@ -3304,7 +3304,7 @@
|
|
|
| // Bit positions in compiler_hints.
|
| static const int kHasOnlySimpleThisPropertyAssignments = 0;
|
| - static const int kTryFastCodegen = 1;
|
| + static const int kTryFullCodegen = 1;
|
|
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(SharedFunctionInfo);
|
| };
|
|
|