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/array_object.cpp

    r26535 r26688  
    2727#include "array_object.lut.h"
    2828
     29#include "PropertyNameArray.h"
    2930#include "error_object.h"
    3031#include "lookup.h"
    3132#include "operations.h"
    32 #include "PropertyNameArray.h"
     33#include <stdio.h>
     34#include <wtf/Assertions.h>
    3335#include <wtf/HashSet.h>
    34 #include <stdio.h>
    3536
    3637
     
    205206  }
    206207 
    207   assert(index >= sparseArrayCutoff);
     208  ASSERT(index >= sparseArrayCutoff);
    208209  JSObject::put(exec, Identifier::from(index), value, attr);
    209210}
     
    9991000}
    10001001  default:
    1001     assert(0);
     1002    ASSERT(0);
    10021003    result = 0;
    10031004    break;
Note: See TracChangeset for help on using the changeset viewer.