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

Side by Side Diff: src/objects.h

Issue 14834: Fixing a subtle bug in receiver resolution when a thrown and caught function ... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years 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/heap.cc ('k') | src/objects-inl.h » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 inline bool IsByteArray(); 609 inline bool IsByteArray();
610 inline bool IsFailure(); 610 inline bool IsFailure();
611 inline bool IsRetryAfterGC(); 611 inline bool IsRetryAfterGC();
612 inline bool IsOutOfMemoryFailure(); 612 inline bool IsOutOfMemoryFailure();
613 inline bool IsException(); 613 inline bool IsException();
614 inline bool IsJSObject(); 614 inline bool IsJSObject();
615 inline bool IsMap(); 615 inline bool IsMap();
616 inline bool IsFixedArray(); 616 inline bool IsFixedArray();
617 inline bool IsDescriptorArray(); 617 inline bool IsDescriptorArray();
618 inline bool IsContext(); 618 inline bool IsContext();
619 inline bool IsCatchContext();
619 inline bool IsGlobalContext(); 620 inline bool IsGlobalContext();
620 inline bool IsJSFunction(); 621 inline bool IsJSFunction();
621 inline bool IsCode(); 622 inline bool IsCode();
622 inline bool IsOddball(); 623 inline bool IsOddball();
623 inline bool IsSharedFunctionInfo(); 624 inline bool IsSharedFunctionInfo();
624 inline bool IsJSValue(); 625 inline bool IsJSValue();
625 inline bool IsStringWrapper(); 626 inline bool IsStringWrapper();
626 inline bool IsProxy(); 627 inline bool IsProxy();
627 inline bool IsBoolean(); 628 inline bool IsBoolean();
628 inline bool IsJSArray(); 629 inline bool IsJSArray();
(...skipping 3576 matching lines...) Expand 10 before | Expand all | Expand 10 after
4205 } else { 4206 } else {
4206 value &= ~(1 << bit_position); 4207 value &= ~(1 << bit_position);
4207 } 4208 }
4208 return value; 4209 return value;
4209 } 4210 }
4210 }; 4211 };
4211 4212
4212 } } // namespace v8::internal 4213 } } // namespace v8::internal
4213 4214
4214 #endif // V8_OBJECTS_H_ 4215 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698