Skip to content

Commit

Permalink
regen
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewnitschke-wk committed Aug 29, 2023
1 parent 796d0b6 commit 152e8ca
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
5 changes: 5 additions & 0 deletions snapshots/input/basic-project/lib/more.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,9 @@ void main() {
print('The sum of $numbers is $sum');

print(math.Rectangle(1,2,3,4));

[1,2].reduce((a, b) => a + b);
}

void test(String Function(int)) {}
void deepTest(String Function(void Function(String test))) {}
28 changes: 28 additions & 0 deletions snapshots/output/basic-project/lib/more.dart
Original file line number Diff line number Diff line change
Expand Up @@ -188,5 +188,33 @@
// ^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/print.dart/print().
// ^^^^ reference scip-dart pub dart_test 1.0.0 lib/more.dart/math.
// ^^^^^^^^^ reference scip-dart pub dart:math 2.18.0 dart:math/rectangle.dart/Rectangle#

[1,2].reduce((a, b) => a + b);
// ^^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/iterable.dart/Iterable#reduce().
// ^ definition local 8
// documentation ```dart
// ^ definition local 9
// documentation ```dart
// ^ reference local 8
// ^ reference local 9
}

void test(String Function(int)) {}
// ^^^^ definition scip-dart pub dart_test 1.0.0 lib/more.dart/test().
// documentation ```dart
// ^^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/string.dart/String#
// ^^^^^^^^ definition local 10
// documentation ```dart
// ^^^ definition local 11
// documentation ```dart
void deepTest(String Function(void Function(String test))) {}
// ^^^^^^^^ definition scip-dart pub dart_test 1.0.0 lib/more.dart/deepTest().
// documentation ```dart
// ^^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/string.dart/String#
// ^^^^^^^^ definition local 12
// documentation ```dart
// ^^^^^^^^ definition local 13
// documentation ```dart
// ^^^^^^ reference scip-dart pub dart:core 2.18.0 dart:core/string.dart/String#
// ^^^^ definition local 14
// documentation ```dart

0 comments on commit 152e8ca

Please sign in to comment.