~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to Puma/src/cpp/PreExprTab.ora

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-06-15 10:17:02 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090615101702-qsr30iptwbxylmo2
Tags: 1.0pre4~svn.20090615-1
* New upstream release.
* don't ignore errors in the postrm script
* avoid spurious creation of empty dir ./usr/sbin/
* improve short descriptions of libpuma-doc and libpuma-dev
* bump Standards-Version to 3.8.1
* bump debhelper compat level to level 7 (latest in stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
U     = 'U' 'u'
27
27
L     = 'L' 'l'
28
28
Exp   = 'E' 'e'
 
29
Bin   = 'P' 'p'
29
30
F     = 'F' 'f'
30
31
Sign  = '+' '-'
31
32
 
74
75
--- a floating point constant:
75
76
 
76
77
(Dec0+ ['.' Dec0*] [Exp [Sign] Dec0+])[L|F] => TOK_EXPR_FLOAT
 
78
('.' Dec0+ [Exp [Sign] Dec0+])[L|F] => TOK_EXPR_FLOAT
 
79
 
 
80
--- a hex floating point constant:
 
81
 
 
82
('0' AnX) (Hex+ ['.' Hex*] (Bin [Sign] Dec0+))[L|F] => TOK_EXPR_FLOAT
 
83
('0' AnX) ('.' Hex+ (Bin [Sign] Dec0+))[L|F] => TOK_EXPR_FLOAT
77
84
 
78
85
--- a character constant:
79
86