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

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

Issue 1156803003: Service protocol cleanups. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: after code review Created 5 years, 7 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/service.cc ('k') | runtime/vm/service_event.cc » ('j') | 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 a9087531f571c46e49d8738a8133dc1a06089397..8782d6d84943b19e76d9e8d169f6ae66ea8e4c5b 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -56,7 +56,6 @@ apparently outside the scope of the JSON-RPC specification.
- [Field](#field)
- [Flag](#flag)
- [FlagList](#flaglist)
- - [FlagType](#flagtype)
- [Frame](#frame)
- [Function](#function)
- [Instance](#instance)
@@ -547,9 +546,9 @@ single-stepping to use.
step | meaning
---- | -------
-into | Single step, entering function calls
-over | Single step, skipping over function calls
-out | Single step until the current function exits
+Into | Single step, entering function calls
+Over | Single step, skipping over function calls
+Out | Single step until the current function exits
See [Success](#success), [StepOption](#StepOption).
@@ -1081,9 +1080,6 @@ class Flag {
// A description of the flag.
string comment;
- // The type of the flag.
- FlagType flagType;
-
// The value of this flag as a string.
//
// If this property is absent, then the value of the flag was NULL.
@@ -1107,19 +1103,6 @@ class FlagList extends Response {
A _FlagList_ represents the complete set of VM command line flags.
-### FlagType
-
-```
-enum FlagType {
- bool,
- int,
- uint64_t,
- string
-}
-```
-
-A _FlagType_ indicates the type of a VM command line flag.
-
### Frame
```
@@ -1528,9 +1511,9 @@ class Stack {
```
enum StepOption {
- into,
- over,
- out
+ Into,
+ Over,
+ Out
}
```
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/service_event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698