fix lint errors
authorfeng@chromium.org <feng@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 5 Sep 2008 16:58:18 +0000 (16:58 +0000)
committerfeng@chromium.org <feng@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 5 Sep 2008 16:58:18 +0000 (16:58 +0000)
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@176 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/heap.cc
src/heap.h
src/objects-inl.h

index 283c59c6d154a892f52d584cbe1047487ba23aed..9c47fb002130d3afcdab609a3dbb626af50fa4f5 100644 (file)
@@ -2297,7 +2297,7 @@ Object* Heap::PutInEvalCache(bool is_global_context, String* src,
     if (obj->IsFailure()) return false;
     *cache_ptr = obj;
   }
-    
+
   Object* new_cache =
       EvalCache::cast(*cache_ptr)->Put(src, value);
   if (new_cache->IsFailure()) return new_cache;
index a3962bbf502642c34f8845e9184ff6d26fd6dc19..05a5d4ab45a501bec479d064f254bb0964f783ba 100644 (file)
@@ -549,7 +549,7 @@ class Heap : public AllStatic {
   // in the eval cache.  The cache may expand, and returns failure
   // if it cannot expand the cache, otherwise the value is returned.
   // The first parameter specifies whether the boilerplate is
-  // compiled in a global context. 
+  // compiled in a global context.
   static Object* PutInEvalCache(bool is_global_context,
                                 String* src, JSFunction* value);
 
index e9af81510b9f8102417c1efc37edf6b89620986c..5b747cd729a1d6eec49dabb70d133dff0adbb7f0 100644 (file)
@@ -316,7 +316,7 @@ bool Object::IsSymbolTable() {
 
 bool Object::IsEvalCache() {
   return IsHashTable() &&
-      (this == Heap::eval_cache_global() || 
+      (this == Heap::eval_cache_global() ||
        this == Heap::eval_cache_non_global());
 }