 Chromium Code Reviews
 Chromium Code Reviews Issue 24360017:
  Expose SameValue equality comparison algorithm  (Closed) 
  Base URL: git://github.com/v8/v8.git@master
    
  
    Issue 24360017:
  Expose SameValue equality comparison algorithm  (Closed) 
  Base URL: git://github.com/v8/v8.git@master| Index: include/v8.h | 
| diff --git a/include/v8.h b/include/v8.h | 
| index 4206105424d4ed73be4e67c071e810f68d3f57f3..62a1cb32906e57d8641373278678bb73b034ac63 100644 | 
| --- a/include/v8.h | 
| +++ b/include/v8.h | 
| @@ -1479,6 +1479,7 @@ class V8_EXPORT Value : public Data { | 
| /** JS == */ | 
| bool Equals(Handle<Value> that) const; | 
| bool StrictEquals(Handle<Value> that) const; | 
| + bool SameValue(Handle<Value> that) const; | 
| template <class T> V8_INLINE static Value* Cast(T* value); |