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

Reviewed by Darin Adler.


Global replace of assert with ASSERT.

File:
1 edited

Legend:

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

    r24633 r26688  
    4242#include "regexp_object.h"
    4343#include "string_object.h"
    44 #include <assert.h>
     44#include <math.h>
     45#include <stdio.h>
     46#include <wtf/Assertions.h>
    4547#include <wtf/HashMap.h>
    4648#include <wtf/HashSet.h>
    4749#include <wtf/Vector.h>
    48 #include <math.h>
    49 #include <stdio.h>
    5050
    5151namespace KJS {
     
    134134JSValue *GetterSetterImp::toPrimitive(ExecState*, JSType) const
    135135{
    136     assert(false);
     136    ASSERT(false);
    137137    return jsNull();
    138138}
     
    140140bool GetterSetterImp::toBoolean(ExecState*) const
    141141{
    142     assert(false);
     142    ASSERT(false);
    143143    return false;
    144144}
     
    146146double GetterSetterImp::toNumber(ExecState *) const
    147147{
    148     assert(false);
     148    ASSERT(false);
    149149    return 0.0;
    150150}
     
    152152UString GetterSetterImp::toString(ExecState *) const
    153153{
    154     assert(false);
     154    ASSERT(false);
    155155    return UString::null();
    156156}
     
    158158JSObject *GetterSetterImp::toObject(ExecState *exec) const
    159159{
    160     assert(false);
     160    ASSERT(false);
    161161    return jsNull()->toObject(exec);
    162162}
Note: See TracChangeset for help on using the changeset viewer.