dart-lang / sample-pop_pop_win

"Pop, Pop, Win!" is an implementation of Minesweeper in Dart.
https://dart-lang.github.io/sample-pop_pop_win/
BSD 3-Clause "New" or "Revised" License
149 stars 58 forks source link

Make sure we always have a Point<int> #45

Closed jakemac53 closed 7 years ago

jakemac53 commented 7 years ago

In the latest sdk I am getting some strong mode runtime errors due to the use of Point instead of an explicit Point<int>. This was leading to errors when creating the _Values object that requires a Point<int> here.

I am not sure exactly what changed to make this just now start being an issue, cc @vsmenon @leafpetersen.