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

Side by Side Diff: src/heap.h

Issue 9422001: Make 'module' a context-sensitive keyword. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added missing CHECK_OK; rebased. Created 8 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 | « no previous file | src/parser.cc » ('j') | src/parser.cc » ('J')
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 V(Boolean_symbol, "Boolean") \ 170 V(Boolean_symbol, "Boolean") \
171 V(callee_symbol, "callee") \ 171 V(callee_symbol, "callee") \
172 V(constructor_symbol, "constructor") \ 172 V(constructor_symbol, "constructor") \
173 V(code_symbol, ".code") \ 173 V(code_symbol, ".code") \
174 V(result_symbol, ".result") \ 174 V(result_symbol, ".result") \
175 V(catch_var_symbol, ".catch-var") \ 175 V(catch_var_symbol, ".catch-var") \
176 V(empty_symbol, "") \ 176 V(empty_symbol, "") \
177 V(eval_symbol, "eval") \ 177 V(eval_symbol, "eval") \
178 V(function_symbol, "function") \ 178 V(function_symbol, "function") \
179 V(length_symbol, "length") \ 179 V(length_symbol, "length") \
180 V(module_symbol, "module") \
180 V(name_symbol, "name") \ 181 V(name_symbol, "name") \
181 V(native_symbol, "native") \ 182 V(native_symbol, "native") \
182 V(null_symbol, "null") \ 183 V(null_symbol, "null") \
183 V(number_symbol, "number") \ 184 V(number_symbol, "number") \
184 V(Number_symbol, "Number") \ 185 V(Number_symbol, "Number") \
185 V(nan_symbol, "NaN") \ 186 V(nan_symbol, "NaN") \
186 V(RegExp_symbol, "RegExp") \ 187 V(RegExp_symbol, "RegExp") \
187 V(source_symbol, "source") \ 188 V(source_symbol, "source") \
188 V(global_symbol, "global") \ 189 V(global_symbol, "global") \
189 V(ignore_case_symbol, "ignoreCase") \ 190 V(ignore_case_symbol, "ignoreCase") \
(...skipping 2464 matching lines...) Expand 10 before | Expand all | Expand 10 after
2654 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2655 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2655 2656
2656 private: 2657 private:
2657 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2658 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2658 }; 2659 };
2659 #endif // DEBUG || LIVE_OBJECT_LIST 2660 #endif // DEBUG || LIVE_OBJECT_LIST
2660 2661
2661 } } // namespace v8::internal 2662 } } // namespace v8::internal
2662 2663
2663 #endif // V8_HEAP_H_ 2664 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/parser.cc » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698