racc 1.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. data/.gitattributes +2 -0
  2. data/.gitignore +7 -0
  3. data/COPYING +515 -0
  4. data/ChangeLog +846 -0
  5. data/DEPENDS +4 -0
  6. data/README.en.rdoc +86 -0
  7. data/README.ja.rdoc +96 -0
  8. data/Rakefile +15 -0
  9. data/TODO +5 -0
  10. data/bin/racc +308 -0
  11. data/bin/racc2y +195 -0
  12. data/bin/y2racc +339 -0
  13. data/doc/en/NEWS.en.rdoc +282 -0
  14. data/doc/en/command.en.html +78 -0
  15. data/doc/en/debug.en.rdoc +20 -0
  16. data/doc/en/grammar.en.rdoc +230 -0
  17. data/doc/en/index.en.html +10 -0
  18. data/doc/en/parser.en.rdoc +74 -0
  19. data/doc/en/usage.en.html +92 -0
  20. data/doc/ja/NEWS.ja.rdoc +307 -0
  21. data/doc/ja/command.ja.html +94 -0
  22. data/doc/ja/debug.ja.rdoc +36 -0
  23. data/doc/ja/grammar.ja.rdoc +348 -0
  24. data/doc/ja/index.ja.html +10 -0
  25. data/doc/ja/parser.ja.rdoc +125 -0
  26. data/doc/ja/usage.ja.html +414 -0
  27. data/ext/racc/cparse/MANIFEST +4 -0
  28. data/ext/racc/cparse/cparse.c +824 -0
  29. data/ext/racc/cparse/depend +1 -0
  30. data/ext/racc/cparse/extconf.rb +7 -0
  31. data/fastcache/extconf.rb +2 -0
  32. data/fastcache/fastcache.c +185 -0
  33. data/lib/racc.rb +6 -0
  34. data/lib/racc/compat.rb +40 -0
  35. data/lib/racc/debugflags.rb +59 -0
  36. data/lib/racc/exception.rb +15 -0
  37. data/lib/racc/grammar.rb +1115 -0
  38. data/lib/racc/grammarfileparser.rb +559 -0
  39. data/lib/racc/info.rb +16 -0
  40. data/lib/racc/iset.rb +91 -0
  41. data/lib/racc/logfilegenerator.rb +214 -0
  42. data/lib/racc/parser.rb +439 -0
  43. data/lib/racc/parserfilegenerator.rb +511 -0
  44. data/lib/racc/pre-setup +13 -0
  45. data/lib/racc/sourcetext.rb +34 -0
  46. data/lib/racc/state.rb +971 -0
  47. data/lib/racc/statetransitiontable.rb +316 -0
  48. data/lib/racc/static.rb +5 -0
  49. data/misc/dist.sh +31 -0
  50. data/sample/array.y +67 -0
  51. data/sample/array2.y +59 -0
  52. data/sample/calc-ja.y +66 -0
  53. data/sample/calc.y +65 -0
  54. data/sample/conflict.y +15 -0
  55. data/sample/hash.y +60 -0
  56. data/sample/lalr.y +17 -0
  57. data/sample/lists.y +57 -0
  58. data/sample/syntax.y +46 -0
  59. data/sample/yyerr.y +46 -0
  60. data/setup.rb +1587 -0
  61. data/tasks/doc.rb +12 -0
  62. data/tasks/email.rb +55 -0
  63. data/tasks/file.rb +37 -0
  64. data/tasks/gem.rb +37 -0
  65. data/tasks/test.rb +16 -0
  66. data/test/assets/chk.y +126 -0
  67. data/test/assets/conf.y +16 -0
  68. data/test/assets/digraph.y +29 -0
  69. data/test/assets/echk.y +118 -0
  70. data/test/assets/err.y +60 -0
  71. data/test/assets/expect.y +7 -0
  72. data/test/assets/firstline.y +4 -0
  73. data/test/assets/ichk.y +102 -0
  74. data/test/assets/intp.y +546 -0
  75. data/test/assets/mailp.y +437 -0
  76. data/test/assets/newsyn.y +25 -0
  77. data/test/assets/noend.y +4 -0
  78. data/test/assets/nonass.y +41 -0
  79. data/test/assets/normal.y +27 -0
  80. data/test/assets/norule.y +4 -0
  81. data/test/assets/nullbug1.y +25 -0
  82. data/test/assets/nullbug2.y +15 -0
  83. data/test/assets/opt.y +123 -0
  84. data/test/assets/percent.y +35 -0
  85. data/test/assets/recv.y +97 -0
  86. data/test/assets/rrconf.y +14 -0
  87. data/test/assets/scan.y +72 -0
  88. data/test/assets/syntax.y +50 -0
  89. data/test/assets/unterm.y +5 -0
  90. data/test/assets/useless.y +12 -0
  91. data/test/assets/yyerr.y +46 -0
  92. data/test/bench.y +36 -0
  93. data/test/helper.rb +88 -0
  94. data/test/infini.y +8 -0
  95. data/test/scandata/brace +7 -0
  96. data/test/scandata/gvar +1 -0
  97. data/test/scandata/normal +4 -0
  98. data/test/scandata/percent +18 -0
  99. data/test/scandata/slash +10 -0
  100. data/test/src.intp +34 -0
  101. data/test/start.y +20 -0
  102. data/test/test_chk_y.rb +51 -0
  103. data/test/test_grammar_file_parser.rb +15 -0
  104. data/test/test_racc_command.rb +155 -0
  105. data/test/test_scan_y.rb +51 -0
  106. data/test/testscanner.rb +51 -0
  107. data/web/racc.en.rhtml +42 -0
  108. data/web/racc.ja.rhtml +51 -0
  109. metadata +166 -0
@@ -0,0 +1,10 @@
1
+ <h1>Racc User Manual</h1>
2
+ <p>updated for version 1.4</p>
3
+ <ul>
4
+ <li><a href="usage.html">Usage</a>
5
+ <li><a href="command.html">Racc Command Reference</a>
6
+ <li><a href="grammar.html">Racc Grammar File Reference</a>
7
+ <li><a href="parser.html">Racc::Parser class Reference</a>
8
+ <li><a href="debug.html">Debugging Parser</a>
9
+ <li><a href="NEWS.html">Release Note</a>
10
+ </ul>
@@ -0,0 +1,74 @@
1
+ = class Racc::Parser
2
+
3
+ == Super Class
4
+
5
+ Object
6
+
7
+ == Instance Methods
8
+
9
+ : do_parse -> Object
10
+ The entry point of parser. This method is used with #next_token.
11
+ If Racc wants to get token (and its value), calls next_token.
12
+
13
+ --
14
+ # Example
15
+ ---- inner
16
+ def parse
17
+ @q = [[1,1],
18
+ [2,2],
19
+ [3,3],
20
+ [false, '$']]
21
+ do_parse
22
+ end
23
+
24
+ def next_token
25
+ @q.shift
26
+ end
27
+ --
28
+
29
+ : next_token -> [Symbol, Object]
30
+ [abstract method]
31
+
32
+ The method to fetch next token. If you use #do_parse method,
33
+ you must implement #next_token. The format of return value is
34
+ [TOKEN_SYMBOL, VALUE]. token-symbol is represented by Ruby's symbol
35
+ by default, e.g. :IDENT for 'IDENT'. ";" (String) for ';'.
36
+
37
+ The final symbol (End of file) must be false.
38
+
39
+ : yyparse( receiver, method_id )
40
+ The another entry point of parser.
41
+ If you use this method, you must implement RECEIVER#METHOD_ID method.
42
+
43
+ RECEIVER#METHOD_ID is a method to get next token.
44
+ It must 'yield's token, which format is [TOKEN-SYMBOL, VALUE].
45
+
46
+ : on_error( error_token_id, error_value, value_stack )
47
+ This method is called when parse error is found.
48
+
49
+ ERROR_TOKEN_ID is an internal ID of token which caused error.
50
+ You can get string replesentation of this ID by calling
51
+ #token_to_str.
52
+
53
+ ERROR_VALUE is a value of error token.
54
+
55
+ value_stack is a stack of symbol values.
56
+ DO NOT MODIFY this object.
57
+
58
+ This method raises ParseError by default.
59
+
60
+ If this method returns, parsers enter "error recovering mode".
61
+
62
+ : token_to_str( t ) -> String
63
+ Convert internal ID of token symbol to the string.
64
+
65
+ : yyerror
66
+ Enter error recovering mode.
67
+ This method does not call #on_error.
68
+
69
+ : yyerrok
70
+ Leave error recovering mode.
71
+
72
+ : yyaccept
73
+ Exit parser.
74
+ Return value is Symbol_Value_Stack[0].
@@ -0,0 +1,92 @@
1
+ <h1>Usage</h1>
2
+
3
+ <h2>Generating Parser Using Racc</h2>
4
+ <p>
5
+ To compile Racc grammar file, simply type:
6
+ </p>
7
+ <pre>
8
+ $ racc parse.y
9
+ </pre>
10
+ <p>
11
+ This creates ruby script file "parse.tab.y". -o option changes this.
12
+ </p>
13
+
14
+ <h2>Writing Racc Grammer File</h2>
15
+ <p>
16
+ If you want your own parser, you have to write grammar file.
17
+ A grammar file contains name of parser class, grammar the parser can parse,
18
+ user code, and any.<br>
19
+ When writing grammar file, yacc's knowledge is helpful.
20
+ If you have not use yacc, also racc is too difficult.
21
+ </p>
22
+ <p>
23
+ Here's example of Racc grammar file.
24
+ </p>
25
+ <pre>
26
+ class Calcparser
27
+ rule
28
+ target: exp { print val[0] }
29
+
30
+ exp: exp '+' exp
31
+ | exp '*' exp
32
+ | '(' exp ')'
33
+ | NUMBER
34
+ end
35
+ </pre>
36
+ <p>
37
+ Racc grammar file is resembles to yacc file.
38
+ But (of cource), action is Ruby code. yacc's $$ is 'result', $0, $1... is
39
+ an array 'val', $-1, $-2... is an array '_values'.
40
+ </p>
41
+ <p>
42
+ Then you must prepare parse entry method. There's two types of
43
+ racc's parse method,
44
+ <a href="parser.html#Racc%3a%3aParser-do_parse"><code>do_parse</code></a> and
45
+ <a href="parser.html#Racc%3a%3aParser-yyparse"><code>yyparse</code></a>.
46
+ </p>
47
+ <p>
48
+ "do_parse()" is simple. it is yyparse() of yacc, and "next_token()" is
49
+ yylex(). This method must returns an array like [TOKENSYMBOL, ITS_VALUE].
50
+ EOF is [false, false].
51
+ (token symbol is ruby symbol (got by String#intern) as default.
52
+ If you want to change this, see <a href="grammar.html#token">grammar reference</a>.
53
+ </p>
54
+ <p>
55
+ "yyparse()" is little complecated, but useful. It does not use "next_token()",
56
+ it gets tokens from any iterator. For example, "yyparse(obj, :scan)" causes
57
+ calling obj#scan, and you can return tokens by yielding them from obj#scan.
58
+ </p>
59
+ <p>
60
+ When debugging, "-v" or/and "-g" option is helpful.
61
+ "-v" causes creating verbose log file (.output).
62
+ "-g" causes creating "Verbose Parser".
63
+ Verbose Parser prints internal status when parsing.
64
+ But it is <em>not</em> automatic.
65
+ You must use -g option and set @yydebug true to get output.
66
+ -g option only creates verbose parser.
67
+ </p>
68
+
69
+ <h3>re-distributing Racc runtime</h3>
70
+ <p>
71
+ A parser, which is created by Racc, requires Racc runtime module;
72
+ racc/parser.rb.
73
+ </p>
74
+ <p>
75
+ Ruby 1.8.x comes with racc runtime module,
76
+ you need NOT distribute racc runtime files.
77
+ </p>
78
+ <p>
79
+ If you want to run your parsers on ruby 1.6,
80
+ you need re-distribute racc runtime module with your parser.
81
+ It can be done by using '-E' option:
82
+ <pre>
83
+ $ racc -E -omyparser.rb myparser.y
84
+ </pre>
85
+ <p>
86
+ This command creates myparser.rb which `includes' racc runtime.
87
+ Only you must do is to distribute your parser file (myparser.rb).
88
+ </p>
89
+ <p>
90
+ Note: parser.rb is LGPL, but your parser is not.
91
+ Your own parser is completely yours.
92
+ </p>
@@ -0,0 +1,307 @@
1
+ = NEWS
2
+
3
+ === 1.4.6
4
+
5
+ * バグの修正
6
+
7
+ * bin/racc -g オプションを -t に改名
8
+ * racc/compiler.rb を削除
9
+ * '|' が meta rules によって許可
10
+ * Ruby 1.8.7 互換性を修正
11
+ * Ruby 1.9 互換性を修正
12
+
13
+ === 1.4.5 (2005-11-21)
14
+ * [FEATURE CHANGE] --no-extensions オプションを削除
15
+ * [fix] racc パッケージのみで -E を使えるように修正
16
+ * [fix] --no-omit-actions が動作していなかったのを修正
17
+ * setup.rb 3.4.1.
18
+
19
+ === 1.4.4 (2003-10-12)
20
+ * Ruby 1.8.0 に対応するリリース。本体に変更はなし
21
+ * -all パッケージに strscan, amstd の同梱するのをやめた
22
+ * setup.rb 3.2.1
23
+
24
+ === 1.4.3 (2002-11-14)
25
+ * [fix] ruby 1.8 の警告を消した
26
+
27
+ === 1.4.2 (2002-01-29)
28
+ * [new] 新しいオプション --no-extentions
29
+
30
+ === 1.4.1 (2001-12-02)
31
+ * amstd 非依存になった (ただし -all パッケージへバンドルは継続)
32
+ * y2racc racc2y を 1.4 対応にした
33
+
34
+ === 1.4.0 (2001-11-30)
35
+ * ランタイムを Ruby の CVS に入れたのにあわせてマイナーバージョンアップ
36
+ * RaccParser, RaccScanner → GrammarFileParser, GrammarFileScanner
37
+ * ハズい typo を修正 (grammer → grammar)
38
+
39
+ === 1.3.12 (2001-11-22)
40
+ * インストーラのバグを修正 (thanks Tanaka Akira)
41
+ * アクション中の正規表現や % 文字列、グローバル変数の検出を向上させた
42
+
43
+ === 1.3.11 (2001-08-28)
44
+ * アクション中の $' $` $/ などを正しくスキャン
45
+
46
+ === 1.3.10 (2001-08-12)
47
+ * cparse.c のプロトタイプ違いを直した
48
+
49
+ === 1.3.9 (2001-04-07)
50
+ * Ruby 1.4 に(再び)対応した
51
+
52
+ === 1.3.8 (2001-03-17)
53
+ * パースエラーの時に記号名も出力するようにした
54
+ * Racc::Parser#token_to_s
55
+
56
+ === 1.3.7 (2001-02-04)
57
+ * サンプルを増やした
58
+
59
+ === 1.3.6 (2001-01-22)
60
+ * cparse がスタティックリンクされても動くようにした
61
+
62
+ === 1.3.5 (2001-01-18)
63
+ * % 文字列のスキャンがバグってた
64
+ * 新しい命令 expect
65
+
66
+ === 1.3.4 (2001-01-11)
67
+ * cparse: シンボルのタイプチェックを入れた
68
+ * cparse: depend を消した
69
+ * cparse: rb_iterate 中の GC で落ちるバグを修正
70
+
71
+ === 1.3.3 (2000-12-25)
72
+ * ジェネレータに致命的なバグ。1.3.1 から混入 (format.rb)
73
+ * racc --runtime-version
74
+
75
+ === 1.3.2 (2000-12-21)
76
+ * -E が失敗するのを直した
77
+ * 再度 strscan を同梱 (y2racc/racc2y に必要)
78
+
79
+ === 1.3.1 (2000-12-17)
80
+ * 正規表現の繰り返し指定の上限を動的に決定する (RE_DUP_MAX)
81
+ * パースルーチンが常に Ruby 版になっていた (消し忘れ)
82
+
83
+ === 1.3.0 (2000-11-30)
84
+ * スキャナから yield でトークンを渡せるようになった
85
+
86
+ === 1.2.6 (2000-11-28)
87
+ * class M::C を許した
88
+
89
+ === 1.2.5 (2000-11-20)
90
+ * オプションに大変動。非互換オプションは -h -f -p -i -n -c -A
91
+ * ロングオプションをサポート
92
+ * y2racc, racc2y はデフォルトでアクションを残すようにした
93
+
94
+ === 1.2.4 (2000-09-13)
95
+ * インストーラとドキュメントを更新
96
+
97
+ === 1.2.3 (2000-08-14)
98
+ * 使われない規則と非終端記号を出力 (強力版)
99
+ * S/R conflict の時 nonassoc で解決するならばエラー
100
+
101
+ === 1.2.2 (2000-08-12)
102
+ * 内部の変更
103
+
104
+ === 1.2.1 (2000-08-05)
105
+ * yacc との変換コマンド racc2y・y2racc を添付
106
+
107
+ === 1.2.0 (2000-08-02)
108
+ * 先読みアルゴリズムを bison のものに変更
109
+
110
+ === 1.1.6 (2000-07-25)
111
+ * 新たなキーワード options とその引数 no_result_var
112
+
113
+ === 1.1.5 (2000-07-21)
114
+ * [重要] token を convert に変更
115
+ * 「新たな」キーワード token (終端記号の宣言)
116
+
117
+ === 1.1.4 (2000-07-13)
118
+ * サンプルがバグってた
119
+
120
+ === 1.1.3 (2000-06-30)
121
+ * 空アクションの呼び出しを省略しないようにするオプション -a
122
+
123
+ === 1.1.2 (2000-06-29)
124
+ * スキャナで strscan を使わないようにした
125
+ * ScanError -&gt; Racc::ScanError, ParseError -&gt; Racc::ParseError
126
+ * エラーメッセージを強化
127
+
128
+ === 1.1.1 (2000-06-15)
129
+ * requireミス (thanks Toshさん)
130
+ * -v をつけるとconflictが報告されなくなっていた
131
+
132
+ === 1.1.0 (2000-06-12)
133
+ * 新しい 状態遷移表生成アルゴリズム
134
+
135
+ === 1.0.4 (2000-06-04)
136
+ * S/R conflict がおきると .output 出力で落ちるバグ修正 (Tosh さんの報告)
137
+ * 使われない非終端記号・規則を表示
138
+
139
+ === 1.0.3 (2000-06-03)
140
+ * filter -&gt; collect!
141
+
142
+ === 1.0.2 (2000-05-16)
143
+ * インストーラをアップデート
144
+
145
+ === 1.0.1 (2000-05-12)
146
+ * state.rb: 先読みルーチンをちょっとだけ高速化 && 追加デバッグ
147
+ * コードを整理した。著作権表示全体を全部のファイルにつけた。
148
+ * amstd アップデート (1.7.0)
149
+
150
+ === 1.0.0 (2000-05-06)
151
+ * バージョン 1.0
152
+
153
+ === 0.14.6 (2000-05-05)
154
+ * デバッグ出力を詳細にした
155
+
156
+ === 0.14.5 (2000-05-01)
157
+ * インストーラを ruby 1.4.4 系の新しいパスに対応させた
158
+
159
+ === 0.14.4 (2000-04-09)
160
+ * パーサの定数を削減(Racc_arg にまとめた)
161
+ * state 生成を微妙に高速化(コアを文字列に変換)
162
+
163
+ === 0.14.3 (2000-04-04)
164
+ * cparse の SYM2ID と ID2SYM のチェックを分離 (thanks 小松さん)
165
+
166
+ === 0.14.2 (2000-04-03)
167
+ * 一行目の class がパースエラーになっていた (thanks 和田さん)
168
+ * 新しいフラグ racc -V
169
+
170
+ === 0.14.1 (2000-03-31)
171
+
172
+ === 0.14.0 (2000-03-21)
173
+ * 高速テーブルを実装
174
+ * 一時的にファイル名/行番号の変換をやめた(Rubyのバグのため。)
175
+
176
+ === 0.13.1 (2000-03-21)
177
+ * --version --copyright などがうまく働いてなかった (thanks ふなばさん)
178
+
179
+ === 0.13.0 (2000-03-20)
180
+ * yyerror/yyerrok/yyaccept を実装
181
+
182
+ === 0.12.2 (2000-03-19)
183
+ * -E フラグがバグってた (thanks ふなばさん)
184
+
185
+ === 0.12.1 (2000-03-16)
186
+ * デフォルトアクションの決め方をちょっと修正(元に戻しただけ)
187
+
188
+ === 0.12.0 (2000-03-15)
189
+ * 完全な LALR を実装したら遅くなったので SLR も併用するようにした。効果絶大。
190
+
191
+ === 0.11.3 (2000-03-09)
192
+ * 状態遷移表生成のバグの修正がまだ甘かった。さらに別のバグもあるようだ。
193
+
194
+ === 0.11.2 (2000-03-09)
195
+ * cparse が Symbol に対応できてなかった
196
+
197
+ === 0.11.1 (2000-03-08)
198
+ * ruby 1.5 の Symbol に対応
199
+ * strscan を最新に
200
+
201
+ === 0.11.0 (2000-02-19)
202
+ * 例外のとき、元のファイルの行番号が出るようにした
203
+
204
+ === 0.10.9 (2000-01-19)
205
+ * セットアップ方法など細かな変更
206
+
207
+ === 0.10.8 (2000-01-03)
208
+ * 忘れてしまったけどたしかインストーラ関係の修正
209
+ * (1/17 repacked) ドキュメントの追加と修正
210
+
211
+ === 0.10.7 (2000-01-03)
212
+ * setup.rb compile.rb amstd/inst などのバグ修正
213
+
214
+ === 0.10.6 (1999-12-24)
215
+ * racc -e ruby でデフォルトパスを使用
216
+ * 空のアクションの呼びだしは省略するようにした
217
+
218
+ === 0.10.5 (1999-12-21)
219
+ * 埋めこみアクションの実装がすさまじくバグってた
220
+ * setup.rb が inst.rb の変化に追従してなかった
221
+ * calc.y calc2.y を 0.10 用に修正
222
+
223
+ === 0.10.4 (1999-12-19)
224
+ * エラー回復モードを実装
225
+ * racc -E で単体で動作するパーサを生成
226
+ * Racc は class から module になった
227
+
228
+ === 0.10.3 (1999-12-01)
229
+ * 埋めこみアクションをサポート
230
+ * .output の出力内容にバグがあったのを修正
231
+
232
+ === 0.10.2 (1999-11-27)
233
+ * ドキュメントの訂正と更新
234
+ * libracc.rb を分割
235
+
236
+ === 0.10.1 (1999-11-19)
237
+ * C でランタイムを書きなおした
238
+ * next_token が false を返したらもう読みこまない
239
+ * アクションがトークンによらず決まるときは next_token を呼ばない
240
+ * $end 廃止
241
+ * LALRactionTable
242
+
243
+ === 0.10.0 (1999-11-06)
244
+ * next_* を next_token に一本化、peep_token 廃止
245
+ * @__debug__ -&lt; @yydebug など変数名を大幅変更
246
+ * 文法ファイルの構造が class...rule...end に変わった
247
+ * コアのコードを一新、高速化
248
+ * strscan を併合
249
+ * ライブラリを racc/ ディレクトリに移動
250
+
251
+ === 0.9.5 (1999-10-03)
252
+ * 0.9.4 の変更がすごくバグってた
253
+ * $end が通らなかったのを修正
254
+ * __show_stack__ の引数が違ってた
255
+
256
+ === 0.9.4 (1999-09-??)
257
+ * Parser::Reporter をなくしてメソッドに戻した
258
+ * d.format.rb を再編成
259
+
260
+ === 0.9.3 (1999-09-03)
261
+ * racc.rb -> racc
262
+
263
+ === 0.9.2 (1999-06-26)
264
+ * strscan使用
265
+
266
+ === 0.9.1 (1999-06-08)
267
+ * アクション中の正規表現に対応 ( /= にも注意だ)
268
+ * アクション中の # コメントに対応
269
+
270
+ === 0.9.0 (1999-06-03)
271
+ * アクションを { } 形式にした
272
+ * ユーザーコードを '----' を使う形式にした
273
+
274
+ === 0.8.11 (?)
275
+ * -g の出力をわかりやすくした
276
+
277
+ === 0.8.10 (?)
278
+ * アクションからreturnできるようにした
279
+
280
+ === 0.8.9 (1999-03-21)
281
+ * -g + @__debug__をつかったデバッグメッセージ操作
282
+ * エラー発生時のバグを修正
283
+ * TOKEN_TO_S_TABLEを付加するようにした
284
+
285
+ === 0.8.8 (1999-03-20)
286
+ * 100倍程度の高速化
287
+ * defaultトークンを加えた
288
+ * デバッグ用ソースを出力するオプション-gをくわえた
289
+ * user_initializeを廃止し、普通にinitializeを使えるようにした
290
+ * parse_initialize/finalize,parseメソッドを廃止
291
+ * next_token,next_value,peep_tokenのデフォルトを廃止
292
+ * %precと同等の機能を加えた
293
+
294
+ === 0.8.7 (1999-03-01)
295
+ * 内部構造が大幅に変化
296
+ * マニュアルがHTMLになった
297
+
298
+ === 0.8.0 (1999-01-16)
299
+ * 文法がブロック型に変化
300
+
301
+ === 0.5.0 (1999-01-07)
302
+ * 演算子優先順位が実装されたようだ
303
+ * スタート規則が実装されたようだ
304
+ * トークン値の置換が実装されたようだ(後に致命的なバグ発見)
305
+
306
+ === 0.1.0 (1999-01-01)
307
+ * とにかく動くようになった