• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mrubyを超漢字で動作させる


Commit MetaInfo

Revisãob41f1180c87086d5245661798e75748a847df695 (tree)
Hora2015-10-21 21:15:35
AutorYukihiro "Matz" Matsumoto <matz@ruby...>
CommiterYukihiro "Matz" Matsumoto

Mensagem de Log

fixed SEGV in mrb_parser_dump(NODE_COLON3)

Mudança Sumário

Diff

--- a/mrbgems/mruby-compiler/core/parse.y
+++ b/mrbgems/mruby-compiler/core/parse.y
@@ -5984,9 +5984,7 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
59845984 break;
59855985
59865986 case NODE_COLON3:
5987- printf("NODE_COLON3:\n");
5988- dump_prefix(tree, offset+1);
5989- printf("::%s\n", mrb_sym2name(mrb, sym(tree)));
5987+ printf("NODE_COLON3: ::%s\n", mrb_sym2name(mrb, sym(tree)));
59905988 break;
59915989
59925990 case NODE_ARRAY: