Skip to content

Commit 36583bc

Browse files
authored
SDK master=>main default branch migration (#1408)
* master=>main * Update location.dart * Update debugger.dart
1 parent 2b4c5fe commit 36583bc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dwds/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ with the native Dart VM to also work with Dart Web applications compiled with
99

1010
At 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)

dwds/lib/src/debugging/debugger.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

dwds/lib/src/debugging/location.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)