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

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

Issue 1304803002: Fix some errors in service.md. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | 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 7c0b6fef4f1a37ae2bcf5ac6a05796e9fb30fd9d..ae3bf2fdfd9d8160f91d8582969718eeff393575 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -756,7 +756,7 @@ will be the _OptimizedOut_ [Sentinel](#sentinel).
### Breakpoint
```
-class Breakpoint extends Response {
+class Breakpoint extends Object {
int breakpointNumber;
bool resolved;
SourceLocation location;
@@ -782,7 +782,7 @@ class Class extends Object {
string name;
// The error which occurred during class finalization, if it exists.
- @Instance error [optional];
+ @Error error [optional];
// Is this an abstract class?
bool abstract;
@@ -1164,11 +1164,8 @@ A _Flag_ represents a single VM command line flag.
```
class FlagList extends Response {
- // A list of all flags which are set to default values.
- Flag[] unmodifiedFlags;
-
- // A list of all flags which have been modified by the user.
- Flag[] modifiedFlags;
+ // A list of all flags in the VM.
+ Flag[] flags;
}
```
@@ -1181,8 +1178,7 @@ class Frame extends Response {
int index;
@Function function;
@Code code;
- @Script script;
- int tokenPos;
+ SourceLocation location;
BoundVariable[] vars;
}
```
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698