| 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 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1597 | 1597 |
| 1598 /** | 1598 /** |
| 1599 * Returns the name of the resource that contains the script for the | 1599 * Returns the name of the resource that contains the script for the |
| 1600 * function for this StackFrame. | 1600 * function for this StackFrame. |
| 1601 */ | 1601 */ |
| 1602 Local<String> GetScriptName() const; | 1602 Local<String> GetScriptName() const; |
| 1603 | 1603 |
| 1604 /** | 1604 /** |
| 1605 * Returns the name of the resource that contains the script for the | 1605 * Returns the name of the resource that contains the script for the |
| 1606 * function for this StackFrame or sourceURL value if the script name | 1606 * function for this StackFrame or sourceURL value if the script name |
| 1607 * is undefined and its source ends with //# sourceURL=... string or | 1607 * is undefined and its source ends with //# sourceURL=... string. |
| 1608 * deprecated //@ sourceURL=... string. | |
| 1609 */ | 1608 */ |
| 1610 Local<String> GetScriptNameOrSourceURL() const; | 1609 Local<String> GetScriptNameOrSourceURL() const; |
| 1611 | 1610 |
| 1612 /** | 1611 /** |
| 1613 * Returns the name of the function associated with this stack frame. | 1612 * Returns the name of the function associated with this stack frame. |
| 1614 */ | 1613 */ |
| 1615 Local<String> GetFunctionName() const; | 1614 Local<String> GetFunctionName() const; |
| 1616 | 1615 |
| 1617 /** | 1616 /** |
| 1618 * Returns whether or not the associated function is compiled via a call to | 1617 * Returns whether or not the associated function is compiled via a call to |
| (...skipping 6857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8476 */ | 8475 */ |
| 8477 | 8476 |
| 8478 | 8477 |
| 8479 } // namespace v8 | 8478 } // namespace v8 |
| 8480 | 8479 |
| 8481 | 8480 |
| 8482 #undef TYPE_CHECK | 8481 #undef TYPE_CHECK |
| 8483 | 8482 |
| 8484 | 8483 |
| 8485 #endif // V8_H_ | 8484 #endif // V8_H_ |
| OLD | NEW |