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

Side by Side Diff: src/heap.h

Issue 12183018: Create pre-frozen change records for Object.observe (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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
« no previous file with comments | « src/contexts.h ('k') | src/object-observe.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 V(identity_hash_symbol, "v8::IdentityHash") \ 249 V(identity_hash_symbol, "v8::IdentityHash") \
250 V(closure_symbol, "(closure)") \ 250 V(closure_symbol, "(closure)") \
251 V(use_strict, "use strict") \ 251 V(use_strict, "use strict") \
252 V(dot_symbol, ".") \ 252 V(dot_symbol, ".") \
253 V(anonymous_function_symbol, "(anonymous function)") \ 253 V(anonymous_function_symbol, "(anonymous function)") \
254 V(compare_ic_symbol, "==") \ 254 V(compare_ic_symbol, "==") \
255 V(strict_compare_ic_symbol, "===") \ 255 V(strict_compare_ic_symbol, "===") \
256 V(infinity_symbol, "Infinity") \ 256 V(infinity_symbol, "Infinity") \
257 V(minus_infinity_symbol, "-Infinity") \ 257 V(minus_infinity_symbol, "-Infinity") \
258 V(hidden_stack_trace_symbol, "v8::hidden_stack_trace") \ 258 V(hidden_stack_trace_symbol, "v8::hidden_stack_trace") \
259 V(query_colon_symbol, "(?:)") 259 V(query_colon_symbol, "(?:)") \
260 V(type_symbol, "type") \
261 V(oldvalue_symbol, "oldValue")
260 262
261 // Forward declarations. 263 // Forward declarations.
262 class GCTracer; 264 class GCTracer;
263 class HeapStats; 265 class HeapStats;
264 class Isolate; 266 class Isolate;
265 class WeakObjectRetainer; 267 class WeakObjectRetainer;
266 268
267 269
268 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 270 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
269 Object** pointer); 271 Object** pointer);
(...skipping 2669 matching lines...) Expand 10 before | Expand all | Expand 10 after
2939 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2941 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2940 2942
2941 private: 2943 private:
2942 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2944 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2943 }; 2945 };
2944 #endif // DEBUG 2946 #endif // DEBUG
2945 2947
2946 } } // namespace v8::internal 2948 } } // namespace v8::internal
2947 2949
2948 #endif // V8_HEAP_H_ 2950 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/object-observe.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698