Files
sdk/pkg/linter/test_data/rules/avoid_setters_without_getters.dart
T
pq 0742604758 clean up references to dart test
See: https://github.com/dart-lang/linter/issues/4754

Change-Id: Ib875e1640dd15f321362f2dba76b3d5d8524497c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/328183
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
Reviewed-by: Samuel Rawlins <srawlins@google.com>
2023-09-27 21:54:09 +00:00

27 lines
523 B
Dart

// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
class A {
set x(int x) {} // LINT
}
class B extends A {
@override
set x(int x) {} // OK because it is an inherited setter.
}
class C {
int get x => 0;
}
class D extends C {
set x(int x) {} // OK because has inherited getter.
}
class E {
int get length => 0;
set length (int v) {} // OK
}