Merge null safety branch into master (#56)

* migrate fixnum to null safety (#55)

Primarily this is just removing a bunch of dynamic params and converting them to Object, and then removing some of the explicit tests around null args that are no longer valid statically in the test.

Note that the runtime argument errors are still present, and I left the tests in for argumentErrorTest which effectively validates the non-opted in users calling these functions still get the same behavior.

We could restore some of the other tests that I deleted to do a similar thing, if we think its worth while.
9 files changed
tree: 3c388890348272b8d959dd248d273136a9e4f935
  1. lib/
  2. test/
  3. .gitignore
  4. .travis.yml
  5. analysis_options.yaml
  6. AUTHORS
  7. CHANGELOG.md
  8. CONTRIBUTING.md
  9. LICENSE
  10. pubspec.yaml
  11. README.md
README.md

A fixed-width 32- and 64- bit integer library for Dart.

Pub Build Status Coverage Status

Provides data types for signed 32- and 64-bit integers. The integer implementations in this library are designed to work identically whether executed on the Dart VM or compiled to JavaScript.