Changeset 13304 in webkit for trunk/JavaScriptCore/bindings/runtime_method.cpp
- Timestamp:
- Mar 15, 2006, 2:21:48 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_method.cpp
r13015 r13304 33 33 using namespace KJS; 34 34 35 RuntimeMethod::RuntimeMethod(ExecState *exec, const Identifier &ident, Bindings::MethodList &m) : FunctionImp (exec, ident) 35 // FIXME: this should probably use InternalFunctionImp, not FunctionImp 36 RuntimeMethod::RuntimeMethod(ExecState *exec, const Identifier &ident, Bindings::MethodList &m) 37 : FunctionImp (exec, ident, 0) 36 38 { 37 39 _methodList = m;
Note:
See TracChangeset
for help on using the changeset viewer.