| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 V(Map) \ | 802 V(Map) \ |
| 803 V(DescriptorArray) \ | 803 V(DescriptorArray) \ |
| 804 V(TransitionArray) \ | 804 V(TransitionArray) \ |
| 805 V(DeoptimizationInputData) \ | 805 V(DeoptimizationInputData) \ |
| 806 V(DeoptimizationOutputData) \ | 806 V(DeoptimizationOutputData) \ |
| 807 V(TypeFeedbackCells) \ | 807 V(TypeFeedbackCells) \ |
| 808 V(FixedArray) \ | 808 V(FixedArray) \ |
| 809 V(FixedDoubleArray) \ | 809 V(FixedDoubleArray) \ |
| 810 V(Context) \ | 810 V(Context) \ |
| 811 V(NativeContext) \ | 811 V(NativeContext) \ |
| 812 V(ModuleContext) \ | |
| 813 V(ScopeInfo) \ | 812 V(ScopeInfo) \ |
| 814 V(JSFunction) \ | 813 V(JSFunction) \ |
| 815 V(Code) \ | 814 V(Code) \ |
| 816 V(Oddball) \ | 815 V(Oddball) \ |
| 817 V(SharedFunctionInfo) \ | 816 V(SharedFunctionInfo) \ |
| 818 V(JSValue) \ | 817 V(JSValue) \ |
| 819 V(JSDate) \ | 818 V(JSDate) \ |
| 820 V(JSMessageObject) \ | 819 V(JSMessageObject) \ |
| 821 V(StringWrapper) \ | 820 V(StringWrapper) \ |
| 822 V(Foreign) \ | 821 V(Foreign) \ |
| (...skipping 8111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8934 } else { | 8933 } else { |
| 8935 value &= ~(1 << bit_position); | 8934 value &= ~(1 << bit_position); |
| 8936 } | 8935 } |
| 8937 return value; | 8936 return value; |
| 8938 } | 8937 } |
| 8939 }; | 8938 }; |
| 8940 | 8939 |
| 8941 } } // namespace v8::internal | 8940 } } // namespace v8::internal |
| 8942 | 8941 |
| 8943 #endif // V8_OBJECTS_H_ | 8942 #endif // V8_OBJECTS_H_ |
| OLD | NEW |