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

Unified Diff: runtime/observatory/lib/src/service/object.dart

Issue 1822933002: vm-service: Include bytecode with _RegExp objects. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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/observatory/lib/src/elements/instance_view.html ('k') | runtime/vm/object_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/service/object.dart
diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
index f36683b1b67e29698b0f152226d4fc51da2bc003..07970072c01e48b8f475a2f4934daab3fa4a69f8 100644
--- a/runtime/observatory/lib/src/service/object.dart
+++ b/runtime/observatory/lib/src/service/object.dart
@@ -2323,6 +2323,8 @@ class Instance extends HeapObject {
@observable Function twoByteFunction; // If a RegExp.
@observable Function externalOneByteFunction; // If a RegExp.
@observable Function externalTwoByteFunction; // If a RegExp.
+ @observable Instance oneByteBytecode; // If a RegExp.
+ @observable Instance twoByteBytecode; // If a RegExp.
@observable bool isCaseSensitive; // If a RegExp.
@observable bool isMultiLine; // If a RegExp.
@@ -2414,6 +2416,8 @@ class Instance extends HeapObject {
twoByteFunction = map['_twoByteFunction'];
externalOneByteFunction = map['_externalOneByteFunction'];
externalTwoByteFunction = map['_externalTwoByteFunction'];
+ oneByteBytecode = map['_oneByteBytecode'];
+ twoByteBytecode = map['_twoByteBytecode'];
nativeFields = map['_nativeFields'];
fields = map['fields'];
« no previous file with comments | « runtime/observatory/lib/src/elements/instance_view.html ('k') | runtime/vm/object_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698