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

Side by Side Diff: src/objects.h

Issue 7549008: Preliminary code for block scopes and block contexts. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Small fix: set harmony flag properly Created 9 years, 4 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
« no previous file with comments | « src/mirror-debugger.js ('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 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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 V(JSObject) \ 736 V(JSObject) \
737 V(JSContextExtensionObject) \ 737 V(JSContextExtensionObject) \
738 V(Map) \ 738 V(Map) \
739 V(DescriptorArray) \ 739 V(DescriptorArray) \
740 V(DeoptimizationInputData) \ 740 V(DeoptimizationInputData) \
741 V(DeoptimizationOutputData) \ 741 V(DeoptimizationOutputData) \
742 V(FixedArray) \ 742 V(FixedArray) \
743 V(FixedDoubleArray) \ 743 V(FixedDoubleArray) \
744 V(Context) \ 744 V(Context) \
745 V(GlobalContext) \ 745 V(GlobalContext) \
746 V(SerializedScopeInfo) \
746 V(JSFunction) \ 747 V(JSFunction) \
747 V(Code) \ 748 V(Code) \
748 V(Oddball) \ 749 V(Oddball) \
749 V(SharedFunctionInfo) \ 750 V(SharedFunctionInfo) \
750 V(JSValue) \ 751 V(JSValue) \
751 V(JSMessageObject) \ 752 V(JSMessageObject) \
752 V(StringWrapper) \ 753 V(StringWrapper) \
753 V(Foreign) \ 754 V(Foreign) \
754 V(Boolean) \ 755 V(Boolean) \
755 V(JSArray) \ 756 V(JSArray) \
(...skipping 6568 matching lines...) Expand 10 before | Expand all | Expand 10 after
7324 } else { 7325 } else {
7325 value &= ~(1 << bit_position); 7326 value &= ~(1 << bit_position);
7326 } 7327 }
7327 return value; 7328 return value;
7328 } 7329 }
7329 }; 7330 };
7330 7331
7331 } } // namespace v8::internal 7332 } } // namespace v8::internal
7332 7333
7333 #endif // V8_OBJECTS_H_ 7334 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mirror-debugger.js ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698