Changes for landing https://github.com/dart-lang/sdk/issues/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.
diff --git a/bin/debug_info.dart b/bin/debug_info.dart
index ef52bc6..6779a00 100644
--- a/bin/debug_info.dart
+++ b/bin/debug_info.dart
@@ -101,7 +101,7 @@
   final StringBuffer _debugCode = new StringBuffer();
   int _indent = 2;
 
-  _push() => stack.add(new _State());
+  void _push() => stack.add(new _State());
 
   void _pop(info) {
     var last = stack.removeLast();