| OLD | NEW | 
|---|
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide | 
| 6  * | 6  * | 
| 7  * V8 is Google's open source JavaScript engine. | 7  * V8 is Google's open source JavaScript engine. | 
| 8  * | 8  * | 
| 9  * This set of documents provides reference material generated from the | 9  * This set of documents provides reference material generated from the | 
| 10  * V8 header file, include/v8.h. | 10  * V8 header file, include/v8.h. | 
| (...skipping 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1619    */ | 1619    */ | 
| 1620   bool IsMap() const; | 1620   bool IsMap() const; | 
| 1621 | 1621 | 
| 1622   /** | 1622   /** | 
| 1623    * Returns true if this value is a Set. | 1623    * Returns true if this value is a Set. | 
| 1624    * This is an experimental feature. | 1624    * This is an experimental feature. | 
| 1625    */ | 1625    */ | 
| 1626   bool IsSet() const; | 1626   bool IsSet() const; | 
| 1627 | 1627 | 
| 1628   /** | 1628   /** | 
|  | 1629    * Returns true if this value is a Map Iterator. | 
|  | 1630    * This is an experimental feature. | 
|  | 1631    */ | 
|  | 1632   bool IsMapIterator() const; | 
|  | 1633 | 
|  | 1634   /** | 
|  | 1635    * Returns true if this value is a Set Iterator. | 
|  | 1636    * This is an experimental feature. | 
|  | 1637    */ | 
|  | 1638   bool IsSetIterator() const; | 
|  | 1639 | 
|  | 1640   /** | 
| 1629    * Returns true if this value is a WeakMap. | 1641    * Returns true if this value is a WeakMap. | 
| 1630    * This is an experimental feature. | 1642    * This is an experimental feature. | 
| 1631    */ | 1643    */ | 
| 1632   bool IsWeakMap() const; | 1644   bool IsWeakMap() const; | 
| 1633 | 1645 | 
| 1634   /** | 1646   /** | 
| 1635    * Returns true if this value is a WeakSet. | 1647    * Returns true if this value is a WeakSet. | 
| 1636    * This is an experimental feature. | 1648    * This is an experimental feature. | 
| 1637    */ | 1649    */ | 
| 1638   bool IsWeakSet() const; | 1650   bool IsWeakSet() const; | 
| (...skipping 5748 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 7387  */ | 7399  */ | 
| 7388 | 7400 | 
| 7389 | 7401 | 
| 7390 }  // namespace v8 | 7402 }  // namespace v8 | 
| 7391 | 7403 | 
| 7392 | 7404 | 
| 7393 #undef TYPE_CHECK | 7405 #undef TYPE_CHECK | 
| 7394 | 7406 | 
| 7395 | 7407 | 
| 7396 #endif  // V8_H_ | 7408 #endif  // V8_H_ | 
| OLD | NEW | 
|---|