Skip to content

Commit e31691b

Browse files
parloughCommit Bot
authored and
Commit Bot
committed
Update outdated old or removed dart.dev links
Removes reference to web portion of site-www as it is minimal and not standalone anymore. Change-Id: I62e92d0dd90afffa5d90c3f3fd4e903251c5672b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/229280 Reviewed-by: Michael Thomsen <[email protected]> Reviewed-by: Kevin Moore <[email protected]> Commit-Queue: Kevin Moore <[email protected]>
1 parent 0cf7512 commit e31691b

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3943,8 +3943,8 @@ significant changes across all areas of the platform. Large changes include:
39433943
- **(Breaking)** "dart:isolate" and "dart:mirrors" are no longer supported when
39443944
using Dart for the web. They are still supported in the command-line VM.
39453945

3946-
- **(Breaking)** Pub's transformer-based build system has been [replaced by a
3947-
new build system][transformers].
3946+
- **(Breaking)** Pub's transformer-based build system has been replaced by a
3947+
[new build system][build system].
39483948

39493949
- The `new` keyword is optional and can be omitted. Likewise, `const` can be
39503950
omitted inside a const context ([issue 30921][]).
@@ -3953,8 +3953,8 @@ significant changes across all areas of the platform. Large changes include:
39533953

39543954
[issue 30345]: https://github.com/dart-lang/sdk/issues/30345
39553955
[issue 30921]: https://github.com/dart-lang/sdk/issues/30921
3956-
[strong mode]: https://www.dartlang.org/guides/language/sound-dart
3957-
[transformers]: https://www.dartlang.org/tools/pub/obsolete
3956+
[strong mode]: https://dart.dev/guides/language/type-system
3957+
[build system]: https://github.com/dart-lang/build
39583958

39593959
### Language
39603960

@@ -4881,7 +4881,7 @@ void test() {
48814881
```
48824882

48834883
To opt back into the warnings, add the following to the
4884-
[.analysis_options](https://www.dartlang.org/guides/language/analysis-options)
4884+
[.analysis_options](https://dart.dev/guides/language/analysis-options)
48854885
file for your project.
48864886

48874887
```
@@ -5316,7 +5316,7 @@ Patch release, resolves one issue:
53165316

53175317
- We have improved the way that the VM locates the native code library for a
53185318
native extension (e.g. `dart-ext:` import). We have updated this
5319-
[article on native extensions](https://www.dartlang.org/articles/dart-vm/native-extensions)
5319+
[article on native extensions](https://dart.dev/server/c-interop-native-extensions)
53205320
to reflect the VM's improved behavior.
53215321

53225322
- Linux builds of the VM will now use the `tcmalloc` library for memory
@@ -6107,7 +6107,7 @@ Patch release, resolves three issues:
61076107
### Tool changes
61086108

61096109
- `dart2js` and Dartium now support improved Javascript Interoperability via the
6110-
[js package](https://pub.dartlang.org/packages/js).
6110+
[js package](https://pub.dev/packages/js).
61116111

61126112
- `docgen` and `dartdocgen` no longer ship in the SDK. The `docgen` sources have
61136113
been removed from the repository.
@@ -6223,7 +6223,7 @@ Patch release, resolves three issues:
62236223
- Documentation tools
62246224

62256225
- `dartdoc` is now the default tool to generate static HTML for API docs.
6226-
[Learn more](https://pub.dartlang.org/packages/dartdoc).
6226+
[Learn more](https://pub.dev/packages/dartdoc).
62276227

62286228
- `docgen` and `dartdocgen` have been deprecated. Currently plan is to remove
62296229
them in 1.13.
@@ -6416,7 +6416,7 @@ Patch release, resolves three issues:
64166416
### Tool changes
64176417

64186418
- This is the first release that does not include the Eclipse-based **Dart
6419-
Editor**. See [dartlang.org/tools](https://www.dartlang.org/tools/) for
6419+
Editor**. See [dart.dev/tools](https://dart.dev/tools#ides-and-editors) for
64206420
alternatives.
64216421
- This is the last release that ships the (unsupported) dart2dart (aka
64226422
`dart2js --output-type=dart`) utility as part of dart2js
@@ -6496,8 +6496,8 @@ This is a bug fix release which merges a number of commits from `bleeding_edge`.
64966496

64976497
- Enum support is fully enabled. See [the language tour][enum] for more details.
64986498

6499-
[async]: https://www.dartlang.org/docs/dart-up-and-running/ch02.html#asynchrony
6500-
[enum]: https://www.dartlang.org/docs/dart-up-and-running/ch02.html#enums
6499+
[async]: https://dart.dev/guides/language/language-tour#asynchrony
6500+
[enum]: https://dart.dev/guides/language/language-tour#enums
65016501

65026502
### Tool changes
65036503

@@ -6511,7 +6511,7 @@ This is a bug fix release which merges a number of commits from `bleeding_edge`.
65116511
- Analysis supports more and better hints, including unused variables and unused
65126512
private members.
65136513

6514-
[dartfmt]: https://www.dartlang.org/tools/dartfmt/
6514+
[dartfmt]: https://dart.dev/tools/dart-format
65156515

65166516
### Core library changes
65176517

@@ -6529,7 +6529,7 @@ This is a bug fix release which merges a number of commits from `bleeding_edge`.
65296529
#### Details
65306530

65316531
For more information on any of these changes, see the corresponding
6532-
documentation on the [Dart API site](http://api.dartlang.org).
6532+
documentation on the [Dart API site](http://api.dart.dev).
65336533

65346534
- `dart:async`:
65356535

@@ -6681,7 +6681,7 @@ documentation on the [Dart API site](http://api.dartlang.org).
66816681
the same page.
66826682

66836683
[pub global activate]:
6684-
https://www.dartlang.org/tools/pub/cmd/pub-global.html#running-a-script-from-your-path
6684+
https://dart.dev/tools/pub/cmd/pub-global#running-a-script-from-your-path
66856685

66866686
### Core library changes
66876687

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you'd like to improve the documentation, you have three options:
1111
click that icon to report a bug on the page.
1212
* To report an API doc bug,
1313
[create an SDK issue](https://github.com/dart-lang/sdk/issues/new?title=API%20doc%20issue:).
14-
* Contribute to the Dart developer websites such as [dart.dev](https://dart.dev) (repo: [dart-lang/site-www](https://github.com/dart-lang/site-www)) and [dart.dev/web](https://dart.dev/web) (repo: [dart-lang/site-www/src/web](https://github.com/dart-lang/site-www/tree/master/src/web)). For more information, see [Writing for Dart and Flutter websites](https://github.com/dart-lang/site-shared/wiki/Writing-for-Dart-and-Flutter-websites).
14+
* Contribute to the Dart developer websites such as [dart.dev](https://dart.dev) (repo: [dart-lang/site-www](https://github.com/dart-lang/site-www)). For more information, see [Writing for Dart and Flutter websites](https://github.com/dart-lang/site-shared/blob/master/doc/writing-for-dart-and-flutter-websites.md).
1515
* Improve the API reference docs at [api.dart.dev](https://api.dart.dev) by editing doc comments in the [Dart SDK repo](https://github.com/dart-lang/sdk/tree/main/sdk/lib). For more information on how to write API docs, see [Effective Dart: Documentation](https://dart.dev/guides/language/effective-dart/documentation).
1616

1717
## Before you contribute

pkg/analyzer_plugin/doc/tutorial/package_structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ command is run in that directory to produce a `.packages` file for the bootstrap
9090
package, and the file `tools/analyzer_plugin/bin/plugin.dart` is run in its own
9191
isolate.
9292

93-
[pub]:https://www.dartlang.org/tools/pub/get-started
93+
[pub]: https://dart.dev/guides/packages

pkg/compiler/lib/compiler.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Future<CompilationResult> compile(Uri script, Uri librariesSpecificationUri,
118118
/// Kind of diagnostics that the compiler can report.
119119
class Diagnostic {
120120
/// An error as identified by the "Dart Programming Language
121-
/// Specification" [http://www.dartlang.org/docs/spec/].
121+
/// Specification" [https://dart.dev/guides/language/spec].
122122
///
123123
/// Note: the compiler may still produce an executable result after
124124
/// reporting a compilation error. The specification says:
@@ -133,7 +133,7 @@ class Diagnostic {
133133
static const Diagnostic ERROR = const Diagnostic(1, 'error');
134134

135135
/// A warning as identified by the "Dart Programming Language
136-
/// Specification" [http://www.dartlang.org/docs/spec/].
136+
/// Specification" [https://dart.dev/guides/language/spec].
137137
static const Diagnostic WARNING = const Diagnostic(2, 'warning');
138138

139139
/// Any other warning that is not covered by [WARNING].

0 commit comments

Comments
 (0)