diff options
author | isaacs <i@izs.me> | 2012-01-23 16:16:42 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-01-23 17:16:27 -0800 |
commit | 40879f33cd083ad8e16860a19cce03a0126e12a5 (patch) | |
tree | 010f16d83e398481e074f35a1900ee6c9e011e16 /deps/v8/src/property.h | |
parent | b1b16d117e6fe2ca889d10e7e0b62a5a60997d57 (diff) | |
download | node-new-40879f33cd083ad8e16860a19cce03a0126e12a5.tar.gz |
Upgrade V8 to 3.8.8
Diffstat (limited to 'deps/v8/src/property.h')
-rw-r--r-- | deps/v8/src/property.h | 5 |
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; } |