Skip to content

Commit cf473c3

Browse files
authored
Update to latest lints and fix problems (#2578)
* regenerate client.js
1 parent 63894bb commit cf473c3

File tree

9 files changed

+902
-509
lines changed

9 files changed

+902
-509
lines changed

_analysis_config/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ environment:
77
sdk: ^3.1.0
88

99
dependencies:
10-
lints: ^4.0.0
10+
lints: ^5.0.0

dwds/lib/src/debugging/inspector.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ class AppInspector implements AppInspectorInterface {
680680
return _instanceHelper.metadataHelper.isNativeJsError(instanceRef.classRef);
681681
}
682682

683-
/// Request and cache <ScriptRef>s for all the scripts in the application.
683+
/// Request and cache `<ScriptRef>`s for all the scripts in the application.
684684
///
685685
/// This populates [_scriptRefsById], [_scriptIdToLibraryId],
686686
/// [_libraryIdToScriptRefs] and [_serverPathToScriptRef].

dwds/lib/src/debugging/metadata/class.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ class ClassMetaData {
9090

9191
/// Type name for Type instances.
9292
///
93-
/// For example, 'int', 'String', 'MyClass', 'List<int>'.
93+
/// For example, `int`, `String`, `MyClass`, `List<int>`.
9494
final String? typeName;
9595

9696
/// The length of the object, if applicable.
9797
final int? length;
9898

9999
/// The dart type name for the object.
100100
///
101-
/// For example, 'int', 'List<String>', 'Null'
101+
/// For example, `int`, `List<String>`, `Null`
102102
String? get dartName => classRef.name;
103103

104104
/// Class ref for the class metadata.

0 commit comments

Comments
 (0)