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

Unified Diff: src/objects.h

Issue 390833003: Remove PropertyAttributes from SetProperty (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/liveedit.cc ('k') | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 3325024fd81a8697cd82fb1c7c89279a79c7464c..bedcd2bcf2d15f4ac025e52706b739f7d0d452b2 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -1934,7 +1934,6 @@ class JSReceiver: public HeapObject {
Handle<JSReceiver> object,
Handle<Name> key,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode,
StoreFromKeyed store_mode = MAY_BE_STORE_FROM_KEYED);
MUST_USE_RESULT static MaybeHandle<Object> SetElement(
@@ -2020,7 +2019,6 @@ class JSReceiver: public HeapObject {
LookupResult* result,
Handle<Name> key,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode,
StoreFromKeyed store_from_keyed);
@@ -2139,7 +2137,6 @@ class JSObject: public JSReceiver {
Handle<JSObject> object,
Handle<Name> name,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode);
MUST_USE_RESULT static MaybeHandle<Object> SetPropertyForResult(
@@ -2147,7 +2144,6 @@ class JSObject: public JSReceiver {
LookupResult* result,
Handle<Name> name,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode,
StoreFromKeyed store_mode = MAY_BE_STORE_FROM_KEYED);
@@ -2744,14 +2740,12 @@ class JSObject: public JSReceiver {
Handle<JSObject> object,
Handle<Name> name,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode,
bool* done);
MUST_USE_RESULT static MaybeHandle<Object> SetPropertyPostInterceptor(
Handle<JSObject> object,
Handle<Name> name,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode);
MUST_USE_RESULT static MaybeHandle<Object> SetPropertyUsingTransition(
Handle<JSObject> object,
@@ -9959,7 +9953,6 @@ class JSProxy: public JSReceiver {
Handle<JSReceiver> receiver,
Handle<Name> name,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode,
bool* done);
@@ -10015,7 +10008,6 @@ class JSProxy: public JSReceiver {
Handle<JSReceiver> receiver,
Handle<Name> name,
Handle<Object> value,
- PropertyAttributes attributes,
StrictMode strict_mode);
MUST_USE_RESULT static inline MaybeHandle<Object> SetElementWithHandler(
Handle<JSProxy> proxy,
« no previous file with comments | « src/liveedit.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698