Index: src/objects.h |
=================================================================== |
--- src/objects.h (revision 3263) |
+++ src/objects.h (working copy) |
@@ -3289,7 +3289,6 @@ |
// Add information on assignments of the form this.x = ...; |
void SetThisPropertyAssignmentsInfo( |
- bool has_only_this_property_assignments, |
bool has_only_simple_this_property_assignments, |
FixedArray* this_property_assignments); |
@@ -3297,10 +3296,6 @@ |
void ClearThisPropertyAssignmentsInfo(); |
// Indicate that this function only consists of assignments of the form |
- // this.x = ...;. |
- inline bool has_only_this_property_assignments(); |
- |
- // Indicate that this function only consists of assignments of the form |
// this.x = y; where y is either a constant or refers to an argument. |
inline bool has_only_simple_this_property_assignments(); |
@@ -3385,9 +3380,8 @@ |
static const int kStartPositionMask = ~((1 << kStartPositionShift) - 1); |
// Bit positions in compiler_hints. |
- static const int kHasOnlyThisPropertyAssignments = 0; |
- static const int kHasOnlySimpleThisPropertyAssignments = 1; |
- static const int kTryFastCodegen = 2; |
+ static const int kHasOnlySimpleThisPropertyAssignments = 0; |
+ static const int kTryFastCodegen = 1; |
DISALLOW_IMPLICIT_CONSTRUCTORS(SharedFunctionInfo); |
}; |