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

Side by Side Diff: src/property.cc

Issue 8404030: Version 3.7.1 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 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 | « src/property.h ('k') | src/proxy.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 13 matching lines...) Expand all
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #include "v8.h" 28 #include "v8.h"
29 29
30 namespace v8 { 30 namespace v8 {
31 namespace internal { 31 namespace internal {
32 32
33 33
34 void LookupResult::Iterate(ObjectVisitor* visitor) {
35 LookupResult* current = this; // Could be NULL.
36 while (current != NULL) {
37 visitor->VisitPointer(BitCast<Object**>(&current->holder_));
38 current = current->next_;
39 }
40 }
41
42
34 #ifdef OBJECT_PRINT 43 #ifdef OBJECT_PRINT
35 void LookupResult::Print(FILE* out) { 44 void LookupResult::Print(FILE* out) {
36 if (!IsFound()) { 45 if (!IsFound()) {
37 PrintF(out, "Not Found\n"); 46 PrintF(out, "Not Found\n");
38 return; 47 return;
39 } 48 }
40 49
41 PrintF(out, "LookupResult:\n"); 50 PrintF(out, "LookupResult:\n");
42 PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false"); 51 PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false");
43 PrintF(out, " -attributes = %x\n", GetAttributes()); 52 PrintF(out, " -attributes = %x\n", GetAttributes());
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 PrintF(out, " @ "); 105 PrintF(out, " @ ");
97 GetValue()->ShortPrint(out); 106 GetValue()->ShortPrint(out);
98 PrintF(out, " %d\n", GetDetails().index()); 107 PrintF(out, " %d\n", GetDetails().index());
99 } 108 }
100 109
101 110
102 #endif 111 #endif
103 112
104 113
105 } } // namespace v8::internal 114 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/property.h ('k') | src/proxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698