Changeset 13465 in webkit for trunk/JavaScriptCore/kjs/function_object.h
- Timestamp:
- Mar 23, 2006, 10:28:07 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function_object.h
r12921 r13465 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2006 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or … … 67 68 class FunctionObjectImp : public InternalFunctionImp { 68 69 public: 69 FunctionObjectImp(ExecState *exec, FunctionPrototype *funcProto);70 FunctionObjectImp(ExecState*, FunctionPrototype*); 70 71 virtual ~FunctionObjectImp(); 71 72 72 73 virtual bool implementsConstruct() const; 73 virtual JSObject *construct(ExecState *exec, const List &args, const UString &sourceURL, int lineNumber);74 virtual JSObject *construct(ExecState *exec, const List &args);75 virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args);74 virtual JSObject* construct(ExecState*, const List& args); 75 virtual JSObject* construct(ExecState*, const List& args, const Identifier& functionName, const UString& sourceURL, int lineNumber); 76 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const List& args); 76 77 }; 77 78
Note:
See TracChangeset
for help on using the changeset viewer.