mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
767049139a
- Remove `proxy` and `Provisional` annotations. - Remove `Deprecated.expires` getter. Change-Id: I4521b48bb92e5f8420c778686f4efa9c6426cebb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/258004 Commit-Queue: Lasse Nielsen <lrn@google.com> Reviewed-by: Brian Quinlan <bquinlan@google.com> Reviewed-by: Michael Thomsen <mit@google.com> Reviewed-by: Nate Bosch <nbosch@google.com>
7 lines
274 B
Dart
7 lines
274 B
Dart
// Copyright (c) 2014, 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 C {
|
|
noSuchMethod(Invocation invocation) => 42;
|
|
}
|