Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: include/v8.h

Issue 693813002: Add debug mirror support for ES6 Map/Set iterators. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added TODO Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698