File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ with the native Dart VM to also work with Dart Web applications compiled with
9
9
10
10
At a basic level, DWDS proxies between:
11
11
* Developer tools that are written against the
12
- [ Dart VM Service Protocol] ( https://github.com/dart-lang/sdk/blob/master /runtime/vm/service/service.md )
12
+ [ Dart VM Service Protocol] ( https://github.com/dart-lang/sdk/blob/main /runtime/vm/service/service.md )
13
13
* Execution environments that expose the
14
14
[ Chrome DevTools Protocol] ( https://chromedevtools.github.io/devtools-protocol )
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ class Debugger extends Domain {
101
101
/// Resumes the debugger.
102
102
///
103
103
/// Step parameter options:
104
- /// https://github.com/dart-lang/sdk/blob/master /runtime/vm/service/service.md#resume
104
+ /// https://github.com/dart-lang/sdk/blob/main /runtime/vm/service/service.md#resume
105
105
///
106
106
/// If the step parameter is not provided, the program will resume regular
107
107
/// execution.
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ class Locations {
112
112
113
113
/// `tokenPosTable` for Dart server path, as defined in the
114
114
/// Dart VM Service Protocol:
115
- /// https://github.com/dart-lang/sdk/blob/master /runtime/vm/service/service.md#script
115
+ /// https://github.com/dart-lang/sdk/blob/main /runtime/vm/service/service.md#script
116
116
final Map <String , List <List <int >>> _sourceToTokenPosTable = {};
117
117
118
118
/// The set of all known [Location] s for a module.
@@ -170,7 +170,7 @@ class Locations {
170
170
171
171
/// Returns the tokenPosTable for the provided Dart script path as defined
172
172
/// in:
173
- /// https://github.com/dart-lang/sdk/blob/master /runtime/vm/service/service.md#script
173
+ /// https://github.com/dart-lang/sdk/blob/main /runtime/vm/service/service.md#script
174
174
Future <List <List <int >>> tokenPosTableFor (String serverPath) async {
175
175
var tokenPosTable = _sourceToTokenPosTable[serverPath];
176
176
if (tokenPosTable != null ) return tokenPosTable;
You can’t perform that action at this time.
0 commit comments