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 1596 matching lines...) Loading... |
1607 */ | 1607 */ |
1608 bool IsMap() const; | 1608 bool IsMap() const; |
1609 | 1609 |
1610 /** | 1610 /** |
1611 * Returns true if this value is a Set. | 1611 * Returns true if this value is a Set. |
1612 * This is an experimental feature. | 1612 * This is an experimental feature. |
1613 */ | 1613 */ |
1614 bool IsSet() const; | 1614 bool IsSet() const; |
1615 | 1615 |
1616 /** | 1616 /** |
| 1617 * Returns true if this value is a Map Iterator. |
| 1618 * This is an experimental feature. |
| 1619 */ |
| 1620 bool IsMapIterator() const; |
| 1621 |
| 1622 /** |
| 1623 * Returns true if this value is a Set Iterator. |
| 1624 * This is an experimental feature. |
| 1625 */ |
| 1626 bool IsSetIterator() const; |
| 1627 |
| 1628 /** |
1617 * Returns true if this value is a WeakMap. | 1629 * Returns true if this value is a WeakMap. |
1618 * This is an experimental feature. | 1630 * This is an experimental feature. |
1619 */ | 1631 */ |
1620 bool IsWeakMap() const; | 1632 bool IsWeakMap() const; |
1621 | 1633 |
1622 /** | 1634 /** |
1623 * Returns true if this value is a WeakSet. | 1635 * Returns true if this value is a WeakSet. |
1624 * This is an experimental feature. | 1636 * This is an experimental feature. |
1625 */ | 1637 */ |
1626 bool IsWeakSet() const; | 1638 bool IsWeakSet() const; |
(...skipping 5729 matching lines...) Loading... |
7356 */ | 7368 */ |
7357 | 7369 |
7358 | 7370 |
7359 } // namespace v8 | 7371 } // namespace v8 |
7360 | 7372 |
7361 | 7373 |
7362 #undef TYPE_CHECK | 7374 #undef TYPE_CHECK |
7363 | 7375 |
7364 | 7376 |
7365 #endif // V8_H_ | 7377 #endif // V8_H_ |
OLD | NEW |