| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |