| OLD | NEW |
| 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 30 matching lines...) Expand all Loading... |
| 41 // - Smi (immediate small integer) | 41 // - Smi (immediate small integer) |
| 42 // - Failure (immediate for marking failed operation) | 42 // - Failure (immediate for marking failed operation) |
| 43 // - HeapObject (superclass for everything allocated in the heap) | 43 // - HeapObject (superclass for everything allocated in the heap) |
| 44 // - JSObject | 44 // - JSObject |
| 45 // - JSArray | 45 // - JSArray |
| 46 // - JSRegExp | 46 // - JSRegExp |
| 47 // - JSFunction | 47 // - JSFunction |
| 48 // - GlobalObject | 48 // - GlobalObject |
| 49 // - JSGlobalObject | 49 // - JSGlobalObject |
| 50 // - JSBuiltinsObject | 50 // - JSBuiltinsObject |
| 51 // _ JSGlobalProxy | 51 // _ JSGlobalProxy |
| 52 // - JSValue | 52 // - JSValue |
| 53 // - Script | 53 // - Script |
| 54 // - Array | 54 // - Array |
| 55 // - ByteArray | 55 // - ByteArray |
| 56 // - FixedArray | 56 // - FixedArray |
| 57 // - DescriptorArray | 57 // - DescriptorArray |
| 58 // - HashTable | 58 // - HashTable |
| 59 // - Dictionary | 59 // - Dictionary |
| 60 // - SymbolTable | 60 // - SymbolTable |
| 61 // - Context | 61 // - Context |
| (...skipping 3994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4056 } else { | 4056 } else { |
| 4057 value &= ~(1 << bit_position); | 4057 value &= ~(1 << bit_position); |
| 4058 } | 4058 } |
| 4059 return value; | 4059 return value; |
| 4060 } | 4060 } |
| 4061 }; | 4061 }; |
| 4062 | 4062 |
| 4063 } } // namespace v8::internal | 4063 } } // namespace v8::internal |
| 4064 | 4064 |
| 4065 #endif // V8_OBJECTS_H_ | 4065 #endif // V8_OBJECTS_H_ |
| OLD | NEW |