Skip to content

Commit

Permalink
reset test.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewnitschke committed Apr 6, 2024
1 parent 8a6cd6f commit efd75cf
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions test.dart
Original file line number Diff line number Diff line change
@@ -1,26 +0,0 @@
class SomeClass {
final str = '';
int get getter => 12;
void set setter(int value) {}
void method() => print('asdf');
}

String topLevelFn() => 'str';

extension SomeExtension on SomeClass {
void extensionMethod() => print('extension');
}

void main() {
final instance = SomeClass();
instance.str;
instance.getter;
instance.setter = 12;
instance.method();
topLevelFn();
instance.extensionMethod();
instance
..method()
..str
..getter;
}

0 comments on commit efd75cf

Please sign in to comment.