很奇怪,dart的deprecated标志不写在注释里面,而是要用decorator:
@Deprecated('Use [ConflictException]') class AlreadyExistsException implements Exception {}
https://api.dart.dev/stable/2.8.4/dart-core/Deprecated-class.html
@mashiro 方便 parser 构建 AST 之后做静态分析。这样一个 class deprecated 了,不管是访问 class method/property 还是 instantiate class 都能输出 deprecation warning
每个人都有属于自己的一片森林,也许我们从来不曾走过,但它一直在那里,总会在那里。迷失的人迷失了,相逢的人会再相逢。愿这里,成为属于你的小森林。
@mashiro 方便 parser 构建 AST 之后做静态分析。这样一个 class deprecated 了,不管是访问 class method/property 还是 instantiate class 都能输出 deprecation warning