Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 9a2319a81b8e2ba13ef12b57231540ddbc6d06b7..594e252ce02d26902cc40d0989b9047e5e6a64b5 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -103,11 +103,6 @@ void PrintElementsKind(FILE* out, ElementsKind kind) { |
} |
-// Getters and setters are stored in a fixed array property. These are |
-// constants for their indices. |
-const int kGetterIndex = 0; |
-const int kSetterIndex = 1; |
- |
MUST_USE_RESULT static MaybeObject* CreateJSValue(JSFunction* constructor, |
Object* value) { |
Object* result; |
@@ -209,7 +204,6 @@ MaybeObject* Object::GetPropertyWithReceiver(Object* receiver, |
return value; |
} |
mnaganov (inactive)
2011/11/14 10:22:38
nit: V8 style prescribes to have 2 empty lines bet
|
- |
MaybeObject* JSObject::GetPropertyWithCallback(Object* receiver, |
Object* structure, |
String* name) { |