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

Side by Side Diff: src/globals.h

Issue 8188: Some new regexp infrastructure. (Closed)
Patch Set: Created 12 years, 1 month 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
OLDNEW
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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 class LookupResult; 175 class LookupResult;
176 class MacroAssembler; 176 class MacroAssembler;
177 class Map; 177 class Map;
178 class MapSpace; 178 class MapSpace;
179 class MarkCompactCollector; 179 class MarkCompactCollector;
180 class NewSpace; 180 class NewSpace;
181 class Object; 181 class Object;
182 class OldSpace; 182 class OldSpace;
183 class Property; 183 class Property;
184 class Proxy; 184 class Proxy;
185 class RegExpTree;
185 class Scope; 186 class Scope;
186 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; 187 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo;
187 class Script; 188 class Script;
188 class Slot; 189 class Slot;
189 class Smi; 190 class Smi;
190 class Statement; 191 class Statement;
191 class String; 192 class String;
192 class Struct; 193 class Struct;
193 class SwitchStatement; 194 class SwitchStatement;
194 class Visitor; 195 class Visitor;
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 498
498 Dest dest; 499 Dest dest;
499 memcpy(&dest, &source, sizeof(dest)); 500 memcpy(&dest, &source, sizeof(dest));
500 return dest; 501 return dest;
501 } 502 }
502 503
503 504
504 } } // namespace v8::internal 505 } } // namespace v8::internal
505 506
506 #endif // V8_GLOBALS_H_ 507 #endif // V8_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698