use_string_in_part_of_directives
The part-of directive uses a library name.
Description
#The analyzer produces this diagnostic when a part of
directive uses a
library name to refer to the library that the part is a part of.
Example
#Given a file named lib.dart
that contains the following:
dart
library lib;
part 'test.dart';
The following code produces this diagnostic because the part of
directive uses the name of the library rather than the URI of the library
it's part of:
dart
part of lib;
Common fixes
#Use a URI to reference the library:
dart
part of 'lib.dart';
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。