An error occurred fetching the project authors.
  1. 11 Sep, 2015 1 commit
  2. 03 Jan, 2015 1 commit
  3. 19 Dec, 2014 1 commit
  4. 12 Dec, 2014 1 commit
  5. 22 Aug, 2014 1 commit
  6. 19 Aug, 2014 1 commit
  7. 12 Jul, 2014 1 commit
  8. 11 Jul, 2014 1 commit
  9. 30 Jun, 2014 1 commit
  10. 09 Jun, 2014 1 commit
  11. 05 Jun, 2014 2 commits
  12. 15 May, 2014 1 commit
  13. 13 May, 2014 2 commits
  14. 03 May, 2014 1 commit
  15. 01 May, 2014 1 commit
  16. 30 Apr, 2014 1 commit
  17. 07 Mar, 2014 1 commit
  18. 05 Mar, 2014 1 commit
  19. 23 Feb, 2014 1 commit
  20. 14 Feb, 2014 1 commit
  21. 07 Feb, 2014 1 commit
  22. 31 Jan, 2014 2 commits
    • cremno's avatar
      use mrb_bool, FALSE and TRUE more · 4507985c
      cremno authored
      It doesn't matter to me if one is using FALSE/TRUE instead of 1/0
      but I prefer a type (alias) which emphasizes boolean vars to int.
      I changed 1/0 to FALSE/TRUE anyway.
      4507985c
    • cremno's avatar
      clean up external symbols · f2a62a74
      cremno authored
      remove unused and unneeded:
      - sysexit_status
      - type (a global variable)
      
      add mrb_ prefix to:
      - codedump_all
      - class_instance_method_list
      - parser_dump
      
      make various functions static, incl.:
      - yyparse
      - make_exception
      f2a62a74
  23. 07 Jan, 2014 1 commit
    • cremno's avatar
      remove superfluous includes · aa655b9e
      cremno authored
      - reduce compile time by a little bit (full-core: ~0.7s for me)
      - thanks to 'include-what-you-use' for some help
      - include Standard C header files before any other (coding style)
      aa655b9e
  24. 01 Dec, 2013 1 commit
  25. 28 Nov, 2013 1 commit
  26. 09 Nov, 2013 1 commit
  27. 03 Nov, 2013 3 commits
    • fleuria's avatar
      mirb: reset stack in the first command · 82c5b486
      fleuria authored
      82c5b486
    • fleuria's avatar
      refactor mrb_context_run() · a511957e
      fleuria authored
      a511957e
    • fleuria's avatar
      introduce mrb_context_run() · d75a907e
      fleuria authored
      currently there are two scnenario to call mrb_run(), the first is
      calling a proc, in this case mrb should create a new environment,
      discarding all the variables except args, reciever and block.
      
      the second is calling the newly generated irep, like in mirb.
      in this case, the variables should be kept after mrb_run().
      so we introduce mrb_context_run() to handle this seperately.
      d75a907e
  28. 02 Nov, 2013 1 commit
  29. 04 Oct, 2013 1 commit
  30. 13 Aug, 2013 1 commit
    • Jack Danger Canty's avatar
      Adding line numbers to the output of mirb. · 2bf49522
      Jack Danger Canty authored
      Before:
      
          > "hi"
          hi
          > d
          (mirb):1: undefined method 'd' for main (NoMethodError)
          > d
          (mirb):1: undefined method 'd' for main (NoMethodError)
          > "hi"
          hi
          > "#{'}"
          line 1: unterminated string meets end of file
      
      After
      
          > "hi"
          hi
          > d
          (mirb):2: undefined method 'd' for main (NoMethodError)
          > d
          (mirb):3: undefined method 'd' for main (NoMethodError)
          > "hi"
          hi
          > "#{'}"
          line 5: unterminated string meets end of file
      2bf49522
  31. 03 Aug, 2013 1 commit
  32. 23 Jul, 2013 1 commit
  33. 22 Jul, 2013 1 commit
  34. 18 Jul, 2013 1 commit
  35. 17 Jul, 2013 1 commit