dart-atom / dart

A Dart plugin for Atom.
http://dart-atom.github.io/dart/
BSD 3-Clause "New" or "Revised" License
154 stars 44 forks source link

Generic functions don't appear as functions [grammar] #1160

Open kevmoo opened 6 years ago

kevmoo commented 6 years ago
Future<int> foo(int a, String b, bool c, dynamic a, Object d) => null;
FutureOr<bool> foo<T>(int a, String b, bool c, List d) => null;

0.7.0 – expect the 2nd foo to be blue, too. 😀

screen shot 2017-09-15 at 1 04 19 pm

kevmoo commented 6 years ago

CC @devoncarew