Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: src/heap.h

Issue 7598030: Implement Harmony semantics for typeof null (behind a flag). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 V(constructor_symbol, "constructor") \ 153 V(constructor_symbol, "constructor") \
154 V(code_symbol, ".code") \ 154 V(code_symbol, ".code") \
155 V(result_symbol, ".result") \ 155 V(result_symbol, ".result") \
156 V(catch_var_symbol, ".catch-var") \ 156 V(catch_var_symbol, ".catch-var") \
157 V(empty_symbol, "") \ 157 V(empty_symbol, "") \
158 V(eval_symbol, "eval") \ 158 V(eval_symbol, "eval") \
159 V(function_symbol, "function") \ 159 V(function_symbol, "function") \
160 V(length_symbol, "length") \ 160 V(length_symbol, "length") \
161 V(name_symbol, "name") \ 161 V(name_symbol, "name") \
162 V(native_symbol, "native") \ 162 V(native_symbol, "native") \
163 V(null_symbol, "null") \
163 V(number_symbol, "number") \ 164 V(number_symbol, "number") \
164 V(Number_symbol, "Number") \ 165 V(Number_symbol, "Number") \
165 V(nan_symbol, "NaN") \ 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") \
(...skipping 2133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2306 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2307 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2307 }; 2308 };
2308 #endif // DEBUG || LIVE_OBJECT_LIST 2309 #endif // DEBUG || LIVE_OBJECT_LIST
2309 2310
2310 2311
2311 } } // namespace v8::internal 2312 } } // namespace v8::internal
2312 2313
2313 #undef HEAP 2314 #undef HEAP
2314 2315
2315 #endif // V8_HEAP_H_ 2316 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | src/runtime.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698