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

Unified Diff: runtime/vm/service/service.md

Issue 1208153002: Include pattern and functions for RegExps over the service protocol. Remove quadratic behavior from… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service/service.md
diff --git a/runtime/vm/service/service.md b/runtime/vm/service/service.md
index d764864a9707c185a18e6da66ac6e1fe14c599a0..5815bf4c38f879fc82c980e429576814ea908d5c 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1263,6 +1263,13 @@ class @Instance extends @Object {
// Provided for instance kinds:
// TypeParameter
@Class parameterizedClass [optional];
+
+
+ // The pattern of a RegExp instance.
+ //
+ // Provided for instance kinds:
+ // RegExp
+ @String pattern [optional];
}
```
@@ -1379,6 +1386,12 @@ class Instance extends Object {
// Provided for instance kinds:
// MirrorReference
@Instance mirrorReferent [optional];
+
+ // The pattern of a RegExp instance.
+ //
+ // Provided for instance kinds:
+ // RegExp
+ @String pattern [optional];
// The key for a WeakProperty instance.
//
@@ -1484,6 +1497,9 @@ enum {
// An instance of the Dart class MirrorReference.
MirrorReference,
+ // An instance of the Dart class RegExp.
+ RegExp,
+
// An instance of the Dart class WeakProperty.
WeakProperty,
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698