1. 22 Dec, 2019 6 commits
  2. 21 Dec, 2019 9 commits
  3. 20 Dec, 2019 6 commits
  4. 19 Dec, 2019 4 commits
  5. 18 Dec, 2019 3 commits
  6. 17 Dec, 2019 4 commits
  7. 16 Dec, 2019 6 commits
  8. 15 Dec, 2019 1 commit
  9. 14 Dec, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Remove location info from `Exception#inspect` · d2f2f9db
      KOBAYASHI Shuji authored
      Because location info (file name and line number) is kept in the backtrace,
      it should not be kept in the result of `inspect` (and the exception object
      itself), I think.
      
      ### Example
      
        ```ruby
        # example.rb
        begin
          raise "err"
        rescue => e
          p e
        end
        ```
      
      #### Before this patch:
      
        ```
        $ bin/mruby example.rb
        example.rb:2: err (RuntimeError)
        ```
      
      #### After this patch:
      
        ```
        $ bin/mruby example.rb
        err (RuntimeError)
        ```
      d2f2f9db