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 3677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3688 int GetScriptLineNumber() const; | 3688 int GetScriptLineNumber() const; |
3689 /** | 3689 /** |
3690 * Returns zero based column number of function body and | 3690 * Returns zero based column number of function body and |
3691 * kLineOffsetNotFound if no information available. | 3691 * kLineOffsetNotFound if no information available. |
3692 */ | 3692 */ |
3693 int GetScriptColumnNumber() const; | 3693 int GetScriptColumnNumber() const; |
3694 | 3694 |
3695 /** | 3695 /** |
3696 * Tells whether this function is builtin. | 3696 * Tells whether this function is builtin. |
3697 */ | 3697 */ |
3698 bool IsBuiltin() const; | 3698 V8_DEPRECATED("this should no longer be used.", bool IsBuiltin() const); |
3699 | 3699 |
3700 /** | 3700 /** |
3701 * Returns scriptId. | 3701 * Returns scriptId. |
3702 */ | 3702 */ |
3703 int ScriptId() const; | 3703 int ScriptId() const; |
3704 | 3704 |
3705 /** | 3705 /** |
3706 * Returns the original function if this function is bound, else returns | 3706 * Returns the original function if this function is bound, else returns |
3707 * v8::Undefined. | 3707 * v8::Undefined. |
3708 */ | 3708 */ |
(...skipping 5979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9688 */ | 9688 */ |
9689 | 9689 |
9690 | 9690 |
9691 } // namespace v8 | 9691 } // namespace v8 |
9692 | 9692 |
9693 | 9693 |
9694 #undef TYPE_CHECK | 9694 #undef TYPE_CHECK |
9695 | 9695 |
9696 | 9696 |
9697 #endif // INCLUDE_V8_H_ | 9697 #endif // INCLUDE_V8_H_ |
OLD | NEW |