OLD | NEW |
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 3244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3255 | 3255 |
3256 // [wrapper]: the wrapper cache. | 3256 // [wrapper]: the wrapper cache. |
3257 DECL_ACCESSORS(wrapper, Proxy) | 3257 DECL_ACCESSORS(wrapper, Proxy) |
3258 | 3258 |
3259 // [type]: the script type. | 3259 // [type]: the script type. |
3260 DECL_ACCESSORS(type, Smi) | 3260 DECL_ACCESSORS(type, Smi) |
3261 | 3261 |
3262 // [compilation]: how the the script was compiled. | 3262 // [compilation]: how the the script was compiled. |
3263 DECL_ACCESSORS(compilation_type, Smi) | 3263 DECL_ACCESSORS(compilation_type, Smi) |
3264 | 3264 |
3265 // [line_ends]: array of line ends positions. | 3265 // [line_ends]: FixedArray of line ends positions. |
3266 DECL_ACCESSORS(line_ends, Object) | 3266 DECL_ACCESSORS(line_ends, Object) |
3267 | 3267 |
3268 // [eval_from_function]: for eval scripts the funcion from which eval was | 3268 // [eval_from_function]: for eval scripts the funcion from which eval was |
3269 // called. | 3269 // called. |
3270 DECL_ACCESSORS(eval_from_function, Object) | 3270 DECL_ACCESSORS(eval_from_function, Object) |
3271 | 3271 |
3272 // [eval_from_instructions_offset]: the instruction offset in the code for the | 3272 // [eval_from_instructions_offset]: the instruction offset in the code for the |
3273 // function from which eval was called where eval was called. | 3273 // function from which eval was called where eval was called. |
3274 DECL_ACCESSORS(eval_from_instructions_offset, Smi) | 3274 DECL_ACCESSORS(eval_from_instructions_offset, Smi) |
3275 | 3275 |
(...skipping 1886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5162 } else { | 5162 } else { |
5163 value &= ~(1 << bit_position); | 5163 value &= ~(1 << bit_position); |
5164 } | 5164 } |
5165 return value; | 5165 return value; |
5166 } | 5166 } |
5167 }; | 5167 }; |
5168 | 5168 |
5169 } } // namespace v8::internal | 5169 } } // namespace v8::internal |
5170 | 5170 |
5171 #endif // V8_OBJECTS_H_ | 5171 #endif // V8_OBJECTS_H_ |
OLD | NEW |