| OLD | NEW |
| 1 # Dart VM Service Protocol 2.0 | 1 # Dart VM Service Protocol 2.0 |
| 2 | 2 |
| 3 > Please post feedback to the [observatory-discuss group][discuss-list] | 3 > Please post feedback to the [observatory-discuss group][discuss-list] |
| 4 | 4 |
| 5 This document describes of _version 2.0_ of the Dart VM Service Protocol. This | 5 This document describes of _version 2.0_ of the Dart VM Service Protocol. This |
| 6 protocol is used to communicate with a running Dart Virtual Machine. | 6 protocol is used to communicate with a running Dart Virtual Machine. |
| 7 | 7 |
| 8 To use the Service Protocol, start the VM with the *--observe* flag. | 8 To use the Service Protocol, start the VM with the *--observe* flag. |
| 9 The VM will start a webserver which services protocol requests via WebSocket. | 9 The VM will start a webserver which services protocol requests via WebSocket. |
| 10 It is possible to make HTTP (non-WebSocket) requests, | 10 It is possible to make HTTP (non-WebSocket) requests, |
| (...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1413 // Provided for instance kinds: | 1413 // Provided for instance kinds: |
| 1414 // MirrorReference | 1414 // MirrorReference |
| 1415 @Instance mirrorReferent [optional]; | 1415 @Instance mirrorReferent [optional]; |
| 1416 | 1416 |
| 1417 // The pattern of a RegExp instance. | 1417 // The pattern of a RegExp instance. |
| 1418 // | 1418 // |
| 1419 // Provided for instance kinds: | 1419 // Provided for instance kinds: |
| 1420 // RegExp | 1420 // RegExp |
| 1421 String pattern [optional]; | 1421 String pattern [optional]; |
| 1422 | 1422 |
| 1423 // Whether this regular expression is case sensitive. |
| 1424 // |
| 1425 // Provided for instance kinds: |
| 1426 // RegExp |
| 1427 bool isCaseSensitive [optional]; |
| 1428 |
| 1429 // Whether this regular expression matches multiple lines. |
| 1430 // |
| 1431 // Provided for instance kinds: |
| 1432 // RegExp |
| 1433 bool isMultiLine [optional]; |
| 1434 |
| 1423 // The key for a WeakProperty instance. | 1435 // The key for a WeakProperty instance. |
| 1424 // | 1436 // |
| 1425 // Provided for instance kinds: | 1437 // Provided for instance kinds: |
| 1426 // WeakProperty | 1438 // WeakProperty |
| 1427 @Instance propertyKey [optional]; | 1439 @Instance propertyKey [optional]; |
| 1428 | 1440 |
| 1429 // The key for a WeakProperty instance. | 1441 // The key for a WeakProperty instance. |
| 1430 // | 1442 // |
| 1431 // Provided for instance kinds: | 1443 // Provided for instance kinds: |
| 1432 // WeakProperty | 1444 // WeakProperty |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1991 ``` | 2003 ``` |
| 1992 | 2004 |
| 1993 ## Revision History | 2005 ## Revision History |
| 1994 | 2006 |
| 1995 version | comments | 2007 version | comments |
| 1996 ------- | -------- | 2008 ------- | -------- |
| 1997 1.0 draft 1 | initial revision | 2009 1.0 draft 1 | initial revision |
| 1998 | 2010 |
| 1999 | 2011 |
| 2000 [discuss-list]: https://groups.google.com/a/dartlang.org/forum/#!forum/observato
ry-discuss | 2012 [discuss-list]: https://groups.google.com/a/dartlang.org/forum/#!forum/observato
ry-discuss |
| OLD | NEW |