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

Side by Side Diff: src/objects.h

Issue 7003058: A collection of context-related refactoring changes. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 6 months 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
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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 V(ByteArray) \ 726 V(ByteArray) \
727 V(JSReceiver) \ 727 V(JSReceiver) \
728 V(JSObject) \ 728 V(JSObject) \
729 V(JSContextExtensionObject) \ 729 V(JSContextExtensionObject) \
730 V(Map) \ 730 V(Map) \
731 V(DescriptorArray) \ 731 V(DescriptorArray) \
732 V(DeoptimizationInputData) \ 732 V(DeoptimizationInputData) \
733 V(DeoptimizationOutputData) \ 733 V(DeoptimizationOutputData) \
734 V(FixedArray) \ 734 V(FixedArray) \
735 V(Context) \ 735 V(Context) \
736 V(CatchContext) \
737 V(GlobalContext) \ 736 V(GlobalContext) \
738 V(JSFunction) \ 737 V(JSFunction) \
739 V(Code) \ 738 V(Code) \
740 V(Oddball) \ 739 V(Oddball) \
741 V(SharedFunctionInfo) \ 740 V(SharedFunctionInfo) \
742 V(JSValue) \ 741 V(JSValue) \
743 V(JSMessageObject) \ 742 V(JSMessageObject) \
744 V(StringWrapper) \ 743 V(StringWrapper) \
745 V(Foreign) \ 744 V(Foreign) \
746 V(Boolean) \ 745 V(Boolean) \
(...skipping 6234 matching lines...) Expand 10 before | Expand all | Expand 10 after
6981 } else { 6980 } else {
6982 value &= ~(1 << bit_position); 6981 value &= ~(1 << bit_position);
6983 } 6982 }
6984 return value; 6983 return value;
6985 } 6984 }
6986 }; 6985 };
6987 6986
6988 } } // namespace v8::internal 6987 } } // namespace v8::internal
6989 6988
6990 #endif // V8_OBJECTS_H_ 6989 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698