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

Unified Diff: runtime/vm/parser.cc

Issue 1873283003: Provide a mechanism for naming a hash table so that it can be used in DumpStats to identify the tab… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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/object.cc ('k') | runtime/vm/precompiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.cc
diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
index 3581662c14f696f979b44ba1988a2f582f1766d9..407d688631db6cd7f12a2ee09f3b9545d6a15307 100644
--- a/runtime/vm/parser.cc
+++ b/runtime/vm/parser.cc
@@ -11980,6 +11980,8 @@ struct ConstantPosKey : ValueObject {
class ConstMapKeyEqualsTraits {
public:
+ static const char* Name() { return "ConstMapKeyEqualsTraits"; }
+
static bool IsMatch(const Object& a, const Object& b) {
const Array& key1 = Array::Cast(a);
const Array& key2 = Array::Cast(b);
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/precompiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698