Chromium Code Reviews| 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 3c8e6394b081c47e63d1f38c7d9aec5087b30d1d..dd3a70237f09556a1eaa8dbc21a33096f68d82a7 100644 |
| --- a/runtime/observatory/lib/src/service/object.dart |
| +++ b/runtime/observatory/lib/src/service/object.dart |
| @@ -2155,6 +2155,8 @@ class Instance extends ServiceObject { |
| @observable Function twoByteFunction; // If a RegExp. |
| @observable Function externalOneByteFunction; // If a RegExp. |
| @observable Function externalTwoByteFunction; // If a RegExp. |
| + @observable bool isCaseSensitive; // If a RegExp. |
| + @observable bool isMultiLine; // If a RegExp. |
| bool get isAbstractType { |
| return (kind == 'Type' || kind == 'TypeRef' || |
| @@ -2219,6 +2221,8 @@ class Instance extends ServiceObject { |
| twoByteFunction = map['_twoByteFunction']; |
| externalOneByteFunction = map['_externalOneByteFunction']; |
| externalTwoByteFunction = map['_externalTwoByteFunction']; |
| + isCaseSensitive = map['_isCaseSensitive']; |
|
Cutch
2015/08/13 22:32:36
these are public keys now right?
rmacnak
2015/08/13 22:45:21
Yes, fixed
|
| + isMultiLine = map['_isMultiLine']; |
| nativeFields = map['_nativeFields']; |
| fields = map['fields']; |