mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Switch document generation to use the snippets package instead of the snippets code in the Flutter repo. In the process, some bugs in sample code analysis have been fixed, and I've fixed some more errors in the samples. This will allow the snippets package to be developed separately from the Flutter repo, and reduce the code in the Flutter repo. The snippets code is deleted in this PR. I also converted some comments in the snippet templates to be regular comments instead of doc comments, because having a doc comment block before the imports causes the Dart import sorter to lose the comment. They should have been regular comments in the first place. The snippets package resides in the assets-for-api-docs repo. The sample analysis has also been converted to be run in parallel, and I've bumped the Dartdoc version to 1.0.2.
36 lines
891 B
Dart
36 lines
891 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// @dart = 2.12
|
|
|
|
// This is a dummy dart:ui package for the sample code analyzer tests to use.
|
|
|
|
library dart.ui;
|
|
|
|
/// Annotation used by Flutter's Dart compiler to indicate that an
|
|
/// [Object.toString] override should not be replaced with a supercall.
|
|
///
|
|
/// {@tool sample --template=stateless_widget_material}
|
|
/// A sample if using keepToString to prevent replacement by a supercall.
|
|
///
|
|
/// ```dart
|
|
/// class MyStringBuffer {
|
|
/// error;
|
|
///
|
|
/// StringBuffer _buffer = StringBuffer();
|
|
///
|
|
/// @keepToString
|
|
/// @override
|
|
/// String toString() {
|
|
/// return _buffer.toString();
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
/// {@end-tool}
|
|
const Object keepToString = _KeepToString();
|
|
|
|
class _KeepToString {
|
|
const _KeepToString();
|
|
}
|