Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: src/objects.h

Issue 5665: Replaces two non-private uses of AddProperty with IgnoreAttributesAndSetLocal... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/handles.cc ('k') | src/objects.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/handles.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698