Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ec49748

Browse files
committedMay 13, 2025
Missing semicolons
1 parent 8b22cc7 commit ec49748

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎testing/test_package/lib/example.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ final topLevelInternal = 'not documented';
3636

3737
/// top level testing function
3838
@visibleForTesting
39-
String testingMethod() => 'not documented'
39+
String testingMethod() => 'not documented';
4040

4141
/// This is the same name as a top-level const from the fake lib.
4242
const incorrectDocReference = 'same name as const from fake';
@@ -133,11 +133,11 @@ class Apple {
133133

134134
/// No public docs for this
135135
@internal
136-
int? internalField
136+
int? internalField;
137137

138138
/// No public docs for this
139139
@visibleForTesting
140-
int? testField
140+
int? testField;
141141

142142
///Constructor
143143
Apple();

0 commit comments

Comments
 (0)
Failed to load comments.