Revision f230a1cf deps/v8/src/list.h

View differences:

deps/v8/src/list.h
84 84
  // backing store (e.g. Add).
85 85
  inline T& operator[](int i) const {
86 86
    ASSERT(0 <= i);
87
    ASSERT(i < length_);
87
    SLOW_ASSERT(i < length_);
88 88
    return data_[i];
89 89
  }
90 90
  inline T& at(int i) const { return operator[](i); }

Also available in: Unified diff