~ubuntu-branches/ubuntu/feisty/faust/feisty

« back to all changes in this revision

Viewing changes to compiler/parser/faustlexer.l

  • Committer: Bazaar Package Importer
  • Author(s): Mario Lang
  • Date: 2006-10-09 11:05:30 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20061009110530-zvktdvpq5zewdxso
Tags: 0.9.8-1
* New upstream release.
* Upgrade Standards-Version to 3.7.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
"hbargraph"     return HBARGRAPH;
99
99
"attach"        return ATTACH;
100
100
 
 
101
"acos"          return ACOS;
 
102
"asin"          return ASIN;
 
103
"atan"          return ATAN;
 
104
"atan2"         return ATAN2;
 
105
 
 
106
"cos"           return COS;
 
107
"sin"           return SIN;
 
108
"tan"           return TAN;
 
109
 
 
110
"exp"           return EXP;
 
111
"log"           return LOG;
 
112
"log10"         return LOG10;
 
113
"pow"           return POW;
 
114
"sqrt"          return SQRT;
 
115
 
 
116
"abs"           return ABS;
 
117
"min"           return MIN;
 
118
"max"           return MAX;
 
119
 
 
120
"fmod"          return FMOD;
 
121
"remainder"     return REMAINDER;
 
122
 
 
123
"floor"         return FLOOR;
 
124
"ceil"          return CEIL;
 
125
"rint"          return RINT;
 
126
 
101
127
"seq"           return ISEQ;
102
128
"par"           return IPAR;
103
129
"sum"           return ISUM;
104
130
"prod"          return IPROD;
105
131
 
 
132
"import"        return IMPORT;
 
133
"component"     return COMPONENT;
 
134
 
 
135
"declare"       return DECLARE;
 
136
"name"          return NAMEPROP;
 
137
"author"        return AUTHORPROP;
 
138
"version"       return VERSIONPROP;
 
139
"copyright" return COPYRIGHTPROP;
 
140
"license"       return LICENSEPROP;
 
141
 
 
142
 
106
143
_{ID}           return IDENT;
107
144
{ID}            return IDENT;
108
145