Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Commit 852d142

Browse files
MichaelRFairhurstHarry Terkelsen
authored and
Harry Terkelsen
committed
Changes for landing dart-lang/sdk#32161 (#23)
Add void declarations to methods with implicit dynamic returning void values, which may be illegal in dart 2, but in either case, expresses the current intent better.
1 parent a126fbd commit 852d142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/debug_info.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class _SizeTracker extends RecursiveInfoVisitor {
101101
final StringBuffer _debugCode = new StringBuffer();
102102
int _indent = 2;
103103

104-
_push() => stack.add(new _State());
104+
void _push() => stack.add(new _State());
105105

106106
void _pop(info) {
107107
var last = stack.removeLast();

0 commit comments

Comments
 (0)