| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 V(code_symbol, ".code") \ | 156 V(code_symbol, ".code") \ |
| 157 V(result_symbol, ".result") \ | 157 V(result_symbol, ".result") \ |
| 158 V(catch_var_symbol, ".catch-var") \ | 158 V(catch_var_symbol, ".catch-var") \ |
| 159 V(empty_symbol, "") \ | 159 V(empty_symbol, "") \ |
| 160 V(eval_symbol, "eval") \ | 160 V(eval_symbol, "eval") \ |
| 161 V(function_symbol, "function") \ | 161 V(function_symbol, "function") \ |
| 162 V(length_symbol, "length") \ | 162 V(length_symbol, "length") \ |
| 163 V(name_symbol, "name") \ | 163 V(name_symbol, "name") \ |
| 164 V(number_symbol, "number") \ | 164 V(number_symbol, "number") \ |
| 165 V(Number_symbol, "Number") \ | 165 V(Number_symbol, "Number") \ |
| 166 V(nan_symbol, "NaN") \ |
| 166 V(RegExp_symbol, "RegExp") \ | 167 V(RegExp_symbol, "RegExp") \ |
| 167 V(source_symbol, "source") \ | 168 V(source_symbol, "source") \ |
| 168 V(global_symbol, "global") \ | 169 V(global_symbol, "global") \ |
| 169 V(ignore_case_symbol, "ignoreCase") \ | 170 V(ignore_case_symbol, "ignoreCase") \ |
| 170 V(multiline_symbol, "multiline") \ | 171 V(multiline_symbol, "multiline") \ |
| 171 V(input_symbol, "input") \ | 172 V(input_symbol, "input") \ |
| 172 V(index_symbol, "index") \ | 173 V(index_symbol, "index") \ |
| 173 V(last_index_symbol, "lastIndex") \ | 174 V(last_index_symbol, "lastIndex") \ |
| 174 V(object_symbol, "object") \ | 175 V(object_symbol, "object") \ |
| 175 V(prototype_symbol, "prototype") \ | 176 V(prototype_symbol, "prototype") \ |
| (...skipping 2033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2209 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 2210 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
| 2210 | 2211 |
| 2211 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2212 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2212 }; | 2213 }; |
| 2213 #endif // DEBUG || LIVE_OBJECT_LIST | 2214 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2214 | 2215 |
| 2215 | 2216 |
| 2216 } } // namespace v8::internal | 2217 } } // namespace v8::internal |
| 2217 | 2218 |
| 2218 #endif // V8_HEAP_H_ | 2219 #endif // V8_HEAP_H_ |
| OLD | NEW |