Start implementing jdb "locals".
This lets us show the names and types of the locals, but all the values
will show up as 0/null. We're going to have to walk the whole stack and
take callee-save frames into account to do that right.
Change-Id: Ic6e115513b6e65ae7ed4b7274e70bc514e83190a
diff --git a/src/jdwp/jdwp_constants.h b/src/jdwp/jdwp_constants.h
index dc6d1bc..6d550f2 100644
--- a/src/jdwp/jdwp_constants.h
+++ b/src/jdwp/jdwp_constants.h
@@ -217,7 +217,7 @@
/*
* Tag constants.
*/
-enum JdwpType {
+enum JdwpTag {
JT_ARRAY = '[',
JT_BYTE = 'B',
JT_CHAR = 'C',
@@ -235,7 +235,7 @@
JT_CLASS_LOADER = 'l',
JT_CLASS_OBJECT = 'c',
};
-std::ostream& operator<<(std::ostream& os, const JdwpType& value);
+std::ostream& operator<<(std::ostream& os, const JdwpTag& value);
} // namespace JDWP