| OLD | NEW |
| 1 // Copyright 2007-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2007-2009 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 * Returns true if this value is external. | 760 * Returns true if this value is external. |
| 761 */ | 761 */ |
| 762 bool IsExternal() const; | 762 bool IsExternal() const; |
| 763 | 763 |
| 764 /** | 764 /** |
| 765 * Returns true if this value is a 32-bit signed integer. | 765 * Returns true if this value is a 32-bit signed integer. |
| 766 */ | 766 */ |
| 767 bool IsInt32() const; | 767 bool IsInt32() const; |
| 768 | 768 |
| 769 /** | 769 /** |
| 770 * Returns true if this value is a 32-bit signed integer. | 770 * Returns true if this value is a 32-bit unsigned integer. |
| 771 */ | 771 */ |
| 772 bool IsUint32() const; | 772 bool IsUint32() const; |
| 773 | 773 |
| 774 /** | 774 /** |
| 775 * Returns true if this value is a Date. | 775 * Returns true if this value is a Date. |
| 776 */ | 776 */ |
| 777 bool IsDate() const; | 777 bool IsDate() const; |
| 778 | 778 |
| 779 Local<Boolean> ToBoolean() const; | 779 Local<Boolean> ToBoolean() const; |
| 780 Local<Number> ToNumber() const; | 780 Local<Number> ToNumber() const; |
| (...skipping 2625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3406 | 3406 |
| 3407 } // namespace v8 | 3407 } // namespace v8 |
| 3408 | 3408 |
| 3409 | 3409 |
| 3410 #undef V8EXPORT | 3410 #undef V8EXPORT |
| 3411 #undef V8EXPORT_INLINE | 3411 #undef V8EXPORT_INLINE |
| 3412 #undef TYPE_CHECK | 3412 #undef TYPE_CHECK |
| 3413 | 3413 |
| 3414 | 3414 |
| 3415 #endif // V8_H_ | 3415 #endif // V8_H_ |
| OLD | NEW |