Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: src/objects.h

Issue 387037: Remove trailing whitespace from objects.h (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after
1444 // of its prototype. 1444 // of its prototype.
1445 // 1445 //
1446 // Has/Get/SetHiddenPropertiesObject methods don't allow the holder to be 1446 // Has/Get/SetHiddenPropertiesObject methods don't allow the holder to be
1447 // a JSGlobalProxy. Use BypassGlobalProxy method above to get to the real 1447 // a JSGlobalProxy. Use BypassGlobalProxy method above to get to the real
1448 // holder. 1448 // holder.
1449 // 1449 //
1450 // These accessors do not touch interceptors or accessors. 1450 // These accessors do not touch interceptors or accessors.
1451 inline bool HasHiddenPropertiesObject(); 1451 inline bool HasHiddenPropertiesObject();
1452 inline Object* GetHiddenPropertiesObject(); 1452 inline Object* GetHiddenPropertiesObject();
1453 inline Object* SetHiddenPropertiesObject(Object* hidden_obj); 1453 inline Object* SetHiddenPropertiesObject(Object* hidden_obj);
1454 1454
1455 Object* DeleteProperty(String* name, DeleteMode mode); 1455 Object* DeleteProperty(String* name, DeleteMode mode);
1456 Object* DeleteElement(uint32_t index, DeleteMode mode); 1456 Object* DeleteElement(uint32_t index, DeleteMode mode);
1457 Object* DeleteLazyProperty(LookupResult* result, 1457 Object* DeleteLazyProperty(LookupResult* result,
1458 String* name, 1458 String* name,
1459 DeleteMode mode); 1459 DeleteMode mode);
1460 1460
1461 // Tests for the fast common case for property enumeration. 1461 // Tests for the fast common case for property enumeration.
1462 bool IsSimpleEnum(); 1462 bool IsSimpleEnum();
1463 1463
1464 // Do we want to keep the elements in fast case when increasing the 1464 // Do we want to keep the elements in fast case when increasing the
(...skipping 3586 matching lines...) Expand 10 before | Expand all | Expand 10 after
5051 } else { 5051 } else {
5052 value &= ~(1 << bit_position); 5052 value &= ~(1 << bit_position);
5053 } 5053 }
5054 return value; 5054 return value;
5055 } 5055 }
5056 }; 5056 };
5057 5057
5058 } } // namespace v8::internal 5058 } } // namespace v8::internal
5059 5059
5060 #endif // V8_OBJECTS_H_ 5060 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698