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

Side by Side Diff: include/v8.h

Issue 464413002: Expose Value::IsMap, IsSet, IsWeakMap, IsWeakSet in V8 API. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months 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 1448 matching lines...) Expand 10 before | Expand all | Expand 10 after
1459 */ 1459 */
1460 bool IsRegExp() const; 1460 bool IsRegExp() const;
1461 1461
1462 /** 1462 /**
1463 * Returns true if this value is a Promise. 1463 * Returns true if this value is a Promise.
1464 * This is an experimental feature. 1464 * This is an experimental feature.
1465 */ 1465 */
1466 bool IsPromise() const; 1466 bool IsPromise() const;
1467 1467
1468 /** 1468 /**
1469 * Returns true if this value is a Map.
1470 * This is an experimental feature.
1471 */
1472 bool IsMap() const;
1473
1474 /**
1475 * Returns true if this value is a Set.
1476 * This is an experimental feature.
1477 */
1478 bool IsSet() const;
1479
1480 /**
1481 * Returns true if this value is a WeakMap.
1482 * This is an experimental feature.
1483 */
1484 bool IsWeakMap() const;
1485
1486 /**
1487 * Returns true if this value is a WeakSet.
1488 * This is an experimental feature.
1489 */
1490 bool IsWeakSet() const;
1491
1492 /**
1469 * Returns true if this value is an ArrayBuffer. 1493 * Returns true if this value is an ArrayBuffer.
1470 * This is an experimental feature. 1494 * This is an experimental feature.
1471 */ 1495 */
1472 bool IsArrayBuffer() const; 1496 bool IsArrayBuffer() const;
1473 1497
1474 /** 1498 /**
1475 * Returns true if this value is an ArrayBufferView. 1499 * Returns true if this value is an ArrayBufferView.
1476 * This is an experimental feature. 1500 * This is an experimental feature.
1477 */ 1501 */
1478 bool IsArrayBufferView() const; 1502 bool IsArrayBufferView() const;
(...skipping 5258 matching lines...) Expand 10 before | Expand all | Expand 10 after
6737 */ 6761 */
6738 6762
6739 6763
6740 } // namespace v8 6764 } // namespace v8
6741 6765
6742 6766
6743 #undef TYPE_CHECK 6767 #undef TYPE_CHECK
6744 6768
6745 6769
6746 #endif // V8_H_ 6770 #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