| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 String* name, | 1130 String* name, |
| 1131 Object* value, | 1131 Object* value, |
| 1132 JSObject* holder); | 1132 JSObject* holder); |
| 1133 Object* SetPropertyWithInterceptor(String* name, | 1133 Object* SetPropertyWithInterceptor(String* name, |
| 1134 Object* value, | 1134 Object* value, |
| 1135 PropertyAttributes attributes); | 1135 PropertyAttributes attributes); |
| 1136 Object* SetPropertyPostInterceptor(String* name, | 1136 Object* SetPropertyPostInterceptor(String* name, |
| 1137 Object* value, | 1137 Object* value, |
| 1138 PropertyAttributes attributes); | 1138 PropertyAttributes attributes); |
| 1139 Object* IgnoreAttributesAndSetLocalProperty(String* key, | 1139 Object* IgnoreAttributesAndSetLocalProperty(String* key, |
| 1140 Object* value); | 1140 Object* value, |
| 1141 PropertyAttributes attributes); |
| 1141 | 1142 |
| 1142 // Sets a property that currently has lazy loading. | 1143 // Sets a property that currently has lazy loading. |
| 1143 Object* SetLazyProperty(LookupResult* result, | 1144 Object* SetLazyProperty(LookupResult* result, |
| 1144 String* name, | 1145 String* name, |
| 1145 Object* value, | 1146 Object* value, |
| 1146 PropertyAttributes attributes); | 1147 PropertyAttributes attributes); |
| 1147 | 1148 |
| 1148 // Returns the class name ([[Class]] property in the specification). | 1149 // Returns the class name ([[Class]] property in the specification). |
| 1149 String* class_name(); | 1150 String* class_name(); |
| 1150 | 1151 |
| (...skipping 2758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3909 } else { | 3910 } else { |
| 3910 value &= ~(1 << bit_position); | 3911 value &= ~(1 << bit_position); |
| 3911 } | 3912 } |
| 3912 return value; | 3913 return value; |
| 3913 } | 3914 } |
| 3914 }; | 3915 }; |
| 3915 | 3916 |
| 3916 } } // namespace v8::internal | 3917 } } // namespace v8::internal |
| 3917 | 3918 |
| 3918 #endif // V8_OBJECTS_H_ | 3919 #endif // V8_OBJECTS_H_ |
| OLD | NEW |