不要怂,就是干,撸起袖子干!

  1. 01 Jul, 2016 2 commits
  2. 28 Jun, 2016 1 commit
  3. 27 Jun, 2016 2 commits
  4. 23 Jun, 2016 3 commits
  5. 22 Jun, 2016 4 commits
  6. 21 Jun, 2016 6 commits
  7. 20 Jun, 2016 3 commits
  8. 17 Jun, 2016 1 commit
  9. 15 Jun, 2016 1 commit
  10. 14 Jun, 2016 3 commits
  11. 13 Jun, 2016 4 commits
  12. 12 Jun, 2016 8 commits
  13. 10 Jun, 2016 2 commits
    • ES6 refactor of data types (#6072) · cc4ee8b8
      - Use let, const and property shorthands.
       - The data types are not changed to ES6 classes because it should be possible
         to call them without `new`.
       - Use function declarations so the functions (which are classes) have a name
       - Simplify `inherits` function and move it to utils.js
         The manual style may be a bit more verbose but it comes closer to true ES6
         classes because the functions are named and not dynamically created
       - Name methods
       - Fix bugs in dialect data types where constructor arguments were not applied
         when called without `new`
       - Remove unneeded code
      Felix Becker committed
    • ES6 refactor of utils.js (#6059) · b9bdc1d4
      - let, const, arrow functions, property shorthands, exports, classes
       - changes classes to be PascalCase
       - Removes inherit() function (not used anymore)
      Felix Becker committed