aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/token.rs
Commit message (Collapse)AuthorAgeFilesLines
* Further support for floating-point. Literals with exponents workTim Chevalier2011-03-221-0/+1
| | | | | | and literals with the 'f32' or 'f64' suffixes work as well. In addition, logging things with the f32 or f64 type works. (float is still assumed to be a synonym for f64).
* Started adding support for floating-point type, floating-point literals, and ↵Tim Chevalier2011-03-211-1/+2
| | | | logging of floats. Other operations on float probably don't work yet.
* Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. ↵Graydon Hoare2011-03-161-2/+3
| | | | Tweak std lib vec fns in process.
* Change 'stratum' to the friendlier term 'layer'.Graydon Hoare2010-12-031-2/+2
|
* Teach rustc lexer about changes to stratum, opacity and effect keywords.Graydon Hoare2010-11-031-4/+16
|
* Translate a bunch of the material (lltrans, llasm, abi) from rustboot to ↵Graydon Hoare2010-09-231-0/+348
rustc, and move files around.