| 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 1592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. | 1606 * function for this StackFrame. |
| 1607 */ | 1607 */ |
| 1608 Local<String> GetScriptName() const; | 1608 Local<String> GetScriptName() const; |
| 1609 | 1609 |
| 1610 /** | 1610 /** |
| 1611 * Returns the name of the resource that contains the script for the | 1611 * Returns the name of the resource that contains the script for the |
| 1612 * function for this StackFrame or sourceURL value if the script name | 1612 * function for this StackFrame or sourceURL value if the script name |
| 1613 * is undefined and its source ends with //# sourceURL=... string. | 1613 * is undefined and its source ends with //# sourceURL=... string or |
| 1614 * deprecated //@ sourceURL=... string. |
| 1614 */ | 1615 */ |
| 1615 Local<String> GetScriptNameOrSourceURL() const; | 1616 Local<String> GetScriptNameOrSourceURL() const; |
| 1616 | 1617 |
| 1617 /** | 1618 /** |
| 1618 * Returns the name of the function associated with this stack frame. | 1619 * Returns the name of the function associated with this stack frame. |
| 1619 */ | 1620 */ |
| 1620 Local<String> GetFunctionName() const; | 1621 Local<String> GetFunctionName() const; |
| 1621 | 1622 |
| 1622 /** | 1623 /** |
| 1623 * Returns whether or not the associated function is compiled via a call to | 1624 * Returns whether or not the associated function is compiled via a call to |
| (...skipping 6904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8528 */ | 8529 */ |
| 8529 | 8530 |
| 8530 | 8531 |
| 8531 } // namespace v8 | 8532 } // namespace v8 |
| 8532 | 8533 |
| 8533 | 8534 |
| 8534 #undef TYPE_CHECK | 8535 #undef TYPE_CHECK |
| 8535 | 8536 |
| 8536 | 8537 |
| 8537 #endif // INCLUDE_V8_H_ | 8538 #endif // INCLUDE_V8_H_ |
| OLD | NEW |