Changeset 9768 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Jul 14, 2005, 11:27:04 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r9554 r9768 18 18 * You should have received a copy of the GNU Library General Public License 19 19 * along with this library; see the file COPYING.LIB. If not, write to 20 * the Free Software Foundation, Inc., 5 9 Temple Place - Suite 330,21 * Boston, MA 0211 1-1307, USA.20 * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, 21 * Boston, MA 02110-1301, USA. 22 22 * 23 23 */ … … 49 49 * script - the scope for variable lookup, the value of "this", etc. A new 50 50 * execution context is entered whenever global code is executed (e.g. with 51 * @ref Interpreter::evaluate()), a function is called (see @ref51 * Interpreter::evaluate()), a function is called (see 52 52 * Object::call()), or the builtin "eval" function is executed. 53 53 * 54 * Most inheritable functions in the KJS api take a @refExecState pointer as54 * Most inheritable functions in the KJS api take a ExecState pointer as 55 55 * their first parameter. This can be used to obtain a handle to the current 56 56 * execution context. … … 102 102 /** 103 103 * Returns the context from which the current context was invoked. For 104 * global code this will be a null context (i.e. one for which @ref105 * isNull() returns true). You should check @refisNull() on the returned104 * global code this will be a null context (i.e. one for which 105 * isNull() returns true). You should check isNull() on the returned 106 106 * value before calling any of it's methods. 107 107 * … … 340 340 * Call this to enable a compatibility mode with another browser. 341 341 * (by default konqueror is in "native mode"). 342 * Currently, in KJS, this only changes the behavio ur of Date::getYear()342 * Currently, in KJS, this only changes the behavior of Date::getYear() 343 343 * which returns the full year under IE. 344 344 */ … … 477 477 }; 478 478 479 } ;// namespace479 } // namespace 480 480 481 481 #endif // _KJS_INTERPRETER_H_
Note:
See TracChangeset
for help on using the changeset viewer.