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 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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_ |
OLD | NEW |