Chromium Code Reviews

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 v8::Value::IsMapIterator and v8::Value::IsSetIterator Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/factory.cc » ('J')
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 1596 matching lines...)
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...)
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_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/factory.cc » ('J')

Powered by Google App Engine