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
99
1010At a basic level, DWDS proxies between:
1111* 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 )
1313* Execution environments that expose the
1414 [ 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 {
101101 /// Resumes the debugger.
102102 ///
103103 /// 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
105105 ///
106106 /// If the step parameter is not provided, the program will resume regular
107107 /// execution.
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ class Locations {
112112
113113 /// `tokenPosTable` for Dart server path, as defined in the
114114 /// 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
116116 final Map <String , List <List <int >>> _sourceToTokenPosTable = {};
117117
118118 /// The set of all known [Location] s for a module.
@@ -170,7 +170,7 @@ class Locations {
170170
171171 /// Returns the tokenPosTable for the provided Dart script path as defined
172172 /// 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
174174 Future <List <List <int >>> tokenPosTableFor (String serverPath) async {
175175 var tokenPosTable = _sourceToTokenPosTable[serverPath];
176176 if (tokenPosTable != null ) return tokenPosTable;
You can’t perform that action at this time.
0 commit comments