summaryrefslogtreecommitdiff
path: root/deps/v8/src/property.h
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-01-23 16:16:42 -0800
committerisaacs <i@izs.me>2012-01-23 17:16:27 -0800
commit40879f33cd083ad8e16860a19cce03a0126e12a5 (patch)
tree010f16d83e398481e074f35a1900ee6c9e011e16 /deps/v8/src/property.h
parentb1b16d117e6fe2ca889d10e7e0b62a5a60997d57 (diff)
downloadandroid-node-v8-40879f33cd083ad8e16860a19cce03a0126e12a5.tar.gz
android-node-v8-40879f33cd083ad8e16860a19cce03a0126e12a5.tar.bz2
android-node-v8-40879f33cd083ad8e16860a19cce03a0126e12a5.zip
Upgrade V8 to 3.8.8
Diffstat (limited to 'deps/v8/src/property.h')
-rw-r--r--deps/v8/src/property.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/deps/v8/src/property.h b/deps/v8/src/property.h
index 3203dd1120..120734df9f 100644
--- a/deps/v8/src/property.h
+++ b/deps/v8/src/property.h
@@ -265,11 +265,6 @@ class LookupResult BASE_EMBEDDED {
return IsFound() && GetPropertyDetails().IsProperty();
}
- // Is the result a property or a transition?
- bool IsPropertyOrTransition() {
- return IsFound() && (type() != NULL_DESCRIPTOR);
- }
-
bool IsCacheable() { return cacheable_; }
void DisallowCaching() { cacheable_ = false; }