| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 V(function_symbol, "function") \ | 146 V(function_symbol, "function") \ |
| 147 V(length_symbol, "length") \ | 147 V(length_symbol, "length") \ |
| 148 V(name_symbol, "name") \ | 148 V(name_symbol, "name") \ |
| 149 V(number_symbol, "number") \ | 149 V(number_symbol, "number") \ |
| 150 V(Number_symbol, "Number") \ | 150 V(Number_symbol, "Number") \ |
| 151 V(RegExp_symbol, "RegExp") \ | 151 V(RegExp_symbol, "RegExp") \ |
| 152 V(source_symbol, "source") \ | 152 V(source_symbol, "source") \ |
| 153 V(global_symbol, "global") \ | 153 V(global_symbol, "global") \ |
| 154 V(ignore_case_symbol, "ignoreCase") \ | 154 V(ignore_case_symbol, "ignoreCase") \ |
| 155 V(multiline_symbol, "multiline") \ | 155 V(multiline_symbol, "multiline") \ |
| 156 V(input_symbol, "input") \ |
| 157 V(index_symbol, "index") \ |
| 156 V(last_index_symbol, "lastIndex") \ | 158 V(last_index_symbol, "lastIndex") \ |
| 157 V(object_symbol, "object") \ | 159 V(object_symbol, "object") \ |
| 158 V(prototype_symbol, "prototype") \ | 160 V(prototype_symbol, "prototype") \ |
| 159 V(string_symbol, "string") \ | 161 V(string_symbol, "string") \ |
| 160 V(String_symbol, "String") \ | 162 V(String_symbol, "String") \ |
| 161 V(Date_symbol, "Date") \ | 163 V(Date_symbol, "Date") \ |
| 162 V(this_symbol, "this") \ | 164 V(this_symbol, "this") \ |
| 163 V(to_string_symbol, "toString") \ | 165 V(to_string_symbol, "toString") \ |
| 164 V(char_at_symbol, "CharAt") \ | 166 V(char_at_symbol, "CharAt") \ |
| 165 V(undefined_symbol, "undefined") \ | 167 V(undefined_symbol, "undefined") \ |
| (...skipping 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1806 | 1808 |
| 1807 // To speed up scavenge collections new space string are kept | 1809 // To speed up scavenge collections new space string are kept |
| 1808 // separate from old space strings. | 1810 // separate from old space strings. |
| 1809 static List<Object*> new_space_strings_; | 1811 static List<Object*> new_space_strings_; |
| 1810 static List<Object*> old_space_strings_; | 1812 static List<Object*> old_space_strings_; |
| 1811 }; | 1813 }; |
| 1812 | 1814 |
| 1813 } } // namespace v8::internal | 1815 } } // namespace v8::internal |
| 1814 | 1816 |
| 1815 #endif // V8_HEAP_H_ | 1817 #endif // V8_HEAP_H_ |
| OLD | NEW |