Changeset 2786 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Nov 20, 2002, 1:49:31 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r2783 r2786 331 331 // ECMA 10.1.6 332 332 ActivationImp::ActivationImp(ExecState *exec, FunctionImp *f, const List &args) 333 : _function(f), _arguments( args)333 : _function(f), _arguments(true) 334 334 { 335 335 Value protect(this); 336 _arguments = args; 336 337 _argumentsObject = new ArgumentsImp(exec, f, args); 337 338 putDirect(argumentsPropertyName, _argumentsObject, Internal|DontDelete);
Note:
See TracChangeset
for help on using the changeset viewer.