Changeset 26690 in webkit for trunk/JavaScriptCore/kjs/object.cpp


Ignore:
Timestamp:
Oct 16, 2007, 4:35:01 PM (18 years ago)
Author:
ggaren
Message:

Reviewed by Darin Adler.

Removed KJS_VERBOSE because it was getting in the way of readability,
and the messages didn't seem very helpful.

  • kjs/function.cpp: (KJS::FunctionImp::callAsFunction): (KJS::FunctionImp::passInParameters):
  • kjs/lookup.h: (KJS::lookupPut):
  • kjs/object.cpp: (KJS::JSObject::put):
  • kjs/value.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/object.cpp

    r26688 r26690  
    227227  // and let it override the canPut() check.
    228228  if ((attr == None || attr == DontDelete) && !canPut(exec,propertyName)) {
    229 #ifdef KJS_VERBOSE
    230     fprintf( stderr, "WARNING: canPut %s said NO\n", propertyName.ascii() );
    231 #endif
    232229    return;
    233230  }
Note: See TracChangeset for help on using the changeset viewer.