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

Side by Side Diff: include/v8.h

Issue 460333002: Expose Value::IsArgumentsObject 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') | src/api.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 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1417 * Returns true if this value is a 32-bit unsigned integer. 1417 * Returns true if this value is a 32-bit unsigned integer.
1418 */ 1418 */
1419 bool IsUint32() const; 1419 bool IsUint32() const;
1420 1420
1421 /** 1421 /**
1422 * Returns true if this value is a Date. 1422 * Returns true if this value is a Date.
1423 */ 1423 */
1424 bool IsDate() const; 1424 bool IsDate() const;
1425 1425
1426 /** 1426 /**
1427 * Returns true if this value is an Arguments object.
1428 */
1429 bool IsArgumentsObject() const;
1430
1431 /**
1427 * Returns true if this value is a Boolean object. 1432 * Returns true if this value is a Boolean object.
1428 */ 1433 */
1429 bool IsBooleanObject() const; 1434 bool IsBooleanObject() const;
1430 1435
1431 /** 1436 /**
1432 * Returns true if this value is a Number object. 1437 * Returns true if this value is a Number object.
1433 */ 1438 */
1434 bool IsNumberObject() const; 1439 bool IsNumberObject() const;
1435 1440
1436 /** 1441 /**
(...skipping 5295 matching lines...) Expand 10 before | Expand all | Expand 10 after
6732 */ 6737 */
6733 6738
6734 6739
6735 } // namespace v8 6740 } // namespace v8
6736 6741
6737 6742
6738 #undef TYPE_CHECK 6743 #undef TYPE_CHECK
6739 6744
6740 6745
6741 #endif // V8_H_ 6746 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/api.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698