~ubuntu-branches/ubuntu/intrepid/racc/intrepid

« back to all changes in this revision

Viewing changes to packages/racc/test/conf.y

  • Committer: Bazaar Package Importer
  • Author(s): akira yamada
  • Date: 2005-04-09 17:54:44 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050409175444-fvtir838ypkn7a58
Tags: 1.4.4-1
* new upstream version.  (closes: #301768)
* added racc2y.1 and y2racc.1.
* modified racc2y and y2racc to use optparse instead of deprecated getopts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
class A
 
3
rule
 
4
 
 
5
a: A c C expr;
 
6
 
 
7
b: A B;  # useless
 
8
 
 
9
c: A;
 
10
c: A;
 
11
 
 
12
expr: expr '+' expr
 
13
expr: expr '-' expr
 
14
expr: NUMBER
 
15
 
 
16
end