removed new keyword (#75049)

This commit is contained in:
Anas35 2021-02-01 23:29:53 +05:30 committed by GitHub
parent 014e689087
commit 091a74dab6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 12 deletions

View file

@ -58,8 +58,8 @@ class CommonFinders {
///
/// ```dart
/// // Suppose you have a button with text 'Update' in it:
/// new Button(
/// child: new Text('Update')
/// Button(
/// child: Text('Update')
/// )
///
/// // You can find and tap on it like this:
@ -125,8 +125,8 @@ class CommonFinders {
///
/// ```dart
/// // Suppose you have a button with icon 'arrow_forward' in it:
/// new Button(
/// child: new Icon(Icons.arrow_forward)
/// Button(
/// child: Icon(Icons.arrow_forward)
/// )
///
/// // You can find and tap on it like this:
@ -167,8 +167,8 @@ class CommonFinders {
///
/// ```dart
/// // Suppose you have a button created like this:
/// Widget myButton = new Button(
/// child: new Text('Update')
/// Widget myButton = Button(
/// child: Text('Update')
/// );
///
/// // You can find and tap on it like this:

View file

@ -144,11 +144,11 @@ Future<void> _runSkippedTest(Suite suiteConfig, Test test, List<Group> parents,
/// // ...
/// }, onPlatform: {
/// // This test is especially slow on Windows.
/// 'windows': new Timeout.factor(2),
/// 'windows': Timeout.factor(2),
/// 'browser': [
/// new Skip('TODO: add browser support'),
/// Skip('TODO: add browser support'),
/// // This will be slow on browsers once it works on them.
/// new Timeout.factor(2)
/// Timeout.factor(2)
/// ]
/// });
///

View file

@ -100,7 +100,7 @@ typedef WidgetTesterCallback = Future<void> Function(WidgetTester widgetTester);
///
/// ```dart
/// testWidgets('MyWidget', (WidgetTester tester) async {
/// await tester.pumpWidget(new MyWidget());
/// await tester.pumpWidget(MyWidget());
/// await tester.tap(find.text('Save'));
/// expect(find.text('Success'), findsOneWidget);
/// });
@ -371,8 +371,8 @@ const String kDebugWarning = '''
/// main() async {
/// assert(false); // fail in checked mode
/// await benchmarkWidgets((WidgetTester tester) async {
/// await tester.pumpWidget(new MyWidget());
/// final Stopwatch timer = new Stopwatch()..start();
/// await tester.pumpWidget(MyWidget());
/// final Stopwatch timer = Stopwatch()..start();
/// for (int index = 0; index < 10000; index += 1) {
/// await tester.tap(find.text('Tap me'));
/// await tester.pump();