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

Unified Diff: runtime/vm/snapshot.h

Issue 1815333002: Simpler regex names: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/regexp_test.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.h
diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
index 7e468a07f017a349a75e926ad1c966e9777767b5..7f6436b8b841a71a13821d789f910f08603f75a7 100644
--- a/runtime/vm/snapshot.h
+++ b/runtime/vm/snapshot.h
@@ -57,7 +57,7 @@ class RawICData;
class RawImmutableArray;
class RawInstructions;
class RawInt32x4;
-class RawJSRegExp;
+class RawRegExp;
class RawLanguageError;
class RawLibrary;
class RawLibraryPrefix;
@@ -481,7 +481,7 @@ class SnapshotReader : public BaseReader {
RawObject* NewInteger(int64_t value);
RawStacktrace* NewStacktrace();
RawWeakProperty* NewWeakProperty();
- RawJSRegExp* NewJSRegExp();
+ RawRegExp* NewRegExp();
RawInstructions* GetInstructionsAt(int32_t offset, uword expected_tags) {
return instructions_reader_->GetInstructionsAt(offset, expected_tags);
@@ -610,7 +610,7 @@ class SnapshotReader : public BaseReader {
friend class ICData;
friend class ImmutableArray;
friend class Instructions;
- friend class JSRegExp;
+ friend class RegExp;
friend class LanguageError;
friend class Library;
friend class LibraryPrefix;
@@ -1055,7 +1055,7 @@ class SnapshotWriter : public BaseWriter {
friend class RawGrowableObjectArray;
friend class RawImmutableArray;
friend class RawInstructions;
- friend class RawJSRegExp;
+ friend class RawRegExp;
friend class RawLibrary;
friend class RawLinkedHashMap;
friend class RawLiteralToken;
« no previous file with comments | « runtime/vm/regexp_test.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698