Reviewers: Jakob,

Description:
Revert "Issue 2089 Expose value wrapper's inner values"

[email protected]


Please review this at https://chromiumcodereview.appspot.com/10021056/

SVN Base: https://v8.googlecode.com/svn/trunk

Affected files:
  M src/mirror-debugger.js


Index: src/mirror-debugger.js
diff --git a/src/mirror-debugger.js b/src/mirror-debugger.js
index 479cb0b967de65e034f2ead6428fe613ecdc492b..c43dd228ec9d12c73a0d66a4102477649f85862f 100644
--- a/src/mirror-debugger.js
+++ b/src/mirror-debugger.js
@@ -596,23 +596,6 @@ ObjectMirror.prototype.protoObject = function() {
 };


-/**
- * Return the primitive value if this is object of Boolean, Number or String
- * type (but not Date). Otherwise return undefined.
- */
-ObjectMirror.prototype.primitiveValue = function() {
-  if (!IS_STRING_WRAPPER(this.value_) && !IS_NUMBER_WRAPPER(this.value_) &&
-      !IS_BOOLEAN_WRAPPER(this.value_)) {
-    return void 0;
-  }
-  var primitiveValue = %_ValueOf(this.value_);
-  if (IS_UNDEFINED(primitiveValue)) {
-    return void 0;
-  }
-  return MakeMirror(primitiveValue);
-};
-
-
 ObjectMirror.prototype.hasNamedInterceptor = function() {
   // Get information on interceptors for this object.
   var x = %GetInterceptorInfo(this.value_);
@@ -2250,11 +2233,6 @@ JSONProtocolSerializer.prototype.serializeObject_ = function(mirror, content,
       this.serializeReference(mirror.constructorFunction());
   content.protoObject = this.serializeReference(mirror.protoObject());
content.prototypeObject = this.serializeReference(mirror.prototypeObject());
-
-  var primitiveValue = mirror.primitiveValue();
-  if (!IS_UNDEFINED(primitiveValue)) {
-    content.primitiveValue = this.serializeReference(primitiveValue);
-  }

   // Add flags to indicate whether there are interceptors.
   if (mirror.hasNamedInterceptor()) {


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to