| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 // Scope type | 33 // Scope type |
| 34 const unsigned short GLOBAL_SCOPE = 0; | 34 const unsigned short GLOBAL_SCOPE = 0; |
| 35 const unsigned short LOCAL_SCOPE = 1; | 35 const unsigned short LOCAL_SCOPE = 1; |
| 36 const unsigned short WITH_SCOPE = 2; | 36 const unsigned short WITH_SCOPE = 2; |
| 37 const unsigned short CLOSURE_SCOPE = 3; | 37 const unsigned short CLOSURE_SCOPE = 3; |
| 38 const unsigned short CATCH_SCOPE = 4; | 38 const unsigned short CATCH_SCOPE = 4; |
| 39 | 39 |
| 40 [Custom] void evaluate(in DOMString script); | 40 [Custom] void evaluate(in DOMString script); |
| 41 [Custom] DOMObject restart(); | 41 [Custom] DOMObject restart(); |
| 42 |
| 43 // Only declarative scope (local, with and catch) is accepted. Returns undef
ined. |
| 44 [Custom] DOMObject setVariableValue(in int scopeIndex, in DOMString variable
Name, DOMObject newValue); |
| 42 | 45 |
| 43 readonly attribute JavaScriptCallFrame caller; | 46 readonly attribute JavaScriptCallFrame caller; |
| 44 readonly attribute long sourceID; | 47 readonly attribute long sourceID; |
| 45 readonly attribute long line; | 48 readonly attribute long line; |
| 46 readonly attribute long column; | 49 readonly attribute long column; |
| 47 [CustomGetter] readonly attribute Array scopeChain; | 50 [CustomGetter] readonly attribute Array scopeChain; |
| 48 [Custom] unsigned short scopeType(in int scopeIndex); | 51 [Custom] unsigned short scopeType(in int scopeIndex); |
| 49 [CustomGetter] readonly attribute Object thisObject; | 52 [CustomGetter] readonly attribute Object thisObject; |
| 50 readonly attribute DOMString functionName; | 53 readonly attribute DOMString functionName; |
| 51 [CustomGetter] readonly attribute DOMString type; | 54 [CustomGetter] readonly attribute DOMString type; |
| 52 }; | 55 }; |
| 53 | 56 |
| OLD | NEW |