Index: src/ast.h |
=================================================================== |
--- src/ast.h (revision 3263) |
+++ src/ast.h (working copy) |
@@ -1276,7 +1276,6 @@ |
ZoneList<Statement*>* body, |
int materialized_literal_count, |
int expected_property_count, |
- bool has_only_this_property_assignments, |
bool has_only_simple_this_property_assignments, |
Handle<FixedArray> this_property_assignments, |
int num_parameters, |
@@ -1288,7 +1287,6 @@ |
body_(body), |
materialized_literal_count_(materialized_literal_count), |
expected_property_count_(expected_property_count), |
- has_only_this_property_assignments_(has_only_this_property_assignments), |
has_only_simple_this_property_assignments_( |
has_only_simple_this_property_assignments), |
this_property_assignments_(this_property_assignments), |
@@ -1321,9 +1319,6 @@ |
int materialized_literal_count() { return materialized_literal_count_; } |
int expected_property_count() { return expected_property_count_; } |
- bool has_only_this_property_assignments() { |
- return has_only_this_property_assignments_; |
- } |
bool has_only_simple_this_property_assignments() { |
return has_only_simple_this_property_assignments_; |
} |
@@ -1358,7 +1353,6 @@ |
ZoneList<Statement*>* body_; |
int materialized_literal_count_; |
int expected_property_count_; |
- bool has_only_this_property_assignments_; |
bool has_only_simple_this_property_assignments_; |
Handle<FixedArray> this_property_assignments_; |
int num_parameters_; |