summary refs log tree commit diff
path: root/src/comp
AgeCommit message (Expand)AuthorLines
2012-01-02More resolving and typechecking of bounded type parameters.Marijn Haverbeke-55/+211
2012-01-02Check that type parameter bounds are interface typesMarijn Haverbeke-45/+96
2012-01-02Make last-use pass properly handle closed-over variablesMarijn Haverbeke-3/+18
2012-01-01link with gcc44+Jyun-Yan You-1/+3
2012-01-01fix link errorJyun-Yan You-1/+4
2012-01-01add missing library, enable segmented stacks for freebsdJyun-Yan You-5/+4
2012-01-01freebsd supportUser Jyyou-5/+42
2011-12-30add cap clause to pretty printer, with a testNiko Matsakis-2/+34
2011-12-30Print usage messages to rustc and rustdoc when invoked with no args. Close #1...Graydon Hoare-0/+3
2011-12-29split proto from fn_decl, as not all fn_decls know the proto.Niko Matsakis-200/+207
2011-12-29Add support in lexer for utf8 identifiers. No NFKC logic in char yet.Graydon Hoare-2/+4
2011-12-29list: use predicate to enforce non-empty requirementLenny222-2/+6
2011-12-29Box ty_param_bounds_and_tyMarijn Haverbeke-22/+22
2011-12-28On second thought, re-land pull request #1385 with backquotes; easier to grep...Graydon Hoare-27/+27
2011-12-28Merge pull request #1385 from Lenny222/quotesGraydon Hoare-29/+32
2011-12-28Merge pull request #1389 from erickt/masterGraydon Hoare-1/+1
2011-12-28Move the kind datatype to middle::tyMarijn Haverbeke-52/+53
2011-12-28Change representation of type params to handle interface boundsMarijn Haverbeke-229/+317
2011-12-28comp: minor cleanup.Erick Tryzelaar-1/+1
2011-12-28Made matching machine types equal to float, int, uint (fixes #1376)Stefan Plantikow-1/+22
2011-12-25Use singlequotes in the typechecker too, to distinguish code and EnglishLenny222-29/+32
2011-12-23Go back to a single visit_fn function in visit.rsMarijn Haverbeke-101/+75
2011-12-23Get rid of visit_fn_block in visit.rsMarijn Haverbeke-35/+3
2011-12-23Check impls methods against the type of their iface.Marijn Haverbeke-44/+87
2011-12-23Parse `iface` items and interface references in `impl` items.Marijn Haverbeke-139/+209
2011-12-23Use the same type of record in ty::ty_fn and ty::methodMarijn Haverbeke-357/+249
2011-12-23Make ast::ty_method hold a fn_decl, rather than duplicating its fieldsMarijn Haverbeke-39/+20
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-60/+56
2011-12-22Switch core macros to expand to log(level, ...).Graydon Hoare-4/+4
2011-12-22Merge all 3 log syntaxes, tidy up residual misuses.Graydon Hoare-68/+59
2011-12-22Merge branch 'master' of github.com:graydon/rustGraydon Hoare-398/+328
2011-12-22Register snapshots and switch logging over to use of log_full or #error / #de...Graydon Hoare-219/+248
2011-12-22Work around unwinding bugMarijn Haverbeke-1/+2
2011-12-22Unify some data structures in syntax::ast that were doing the same thingMarijn Haverbeke-397/+327
2011-12-22Revert all of yesterday's snapshots and try again. Cursed!Graydon Hoare-4/+4
2011-12-22Merge branch 'master' of github.com:graydon/rustGraydon Hoare-226/+110
2011-12-22Fix tag_var_cache to cache crate-external tagsMarijn Haverbeke-41/+26
2011-12-22Do not use == and != to compare ty::t valuesMarijn Haverbeke-27/+45
2011-12-22Add ty::new_ty_hash, clean up comparing of ty::t'sMarijn Haverbeke-49/+30
2011-12-22Remove trivial cast checkerMarijn Haverbeke-109/+9
2011-12-21More flailing on log syntax due to call-expr ambiguity in previous attempt.Graydon Hoare-2/+9
2011-12-21Out-of-order-code typo. Snapshot again.Graydon Hoare-1/+1
2011-12-21Switch log_expr to carrying a full expr:u32 for level. Add log_full variant t...Graydon Hoare-29/+59
2011-12-21valid cap clause for kind-ness tooNiko Matsakis-12/+24
2011-12-21upgrade kind checkNiko Matsakis-12/+53
2011-12-21update pprinter to understand ret type of block, add warningsNiko Matsakis-4/+19
2011-12-21Make { || ... } sugar for any type of closure, inferredNiko Matsakis-242/+392
2011-12-21rustc: Exclude stdin from codemap files when lookup_posHaitao Li-3/+5
2011-12-20Inject "core macros" into default syntax-expansion environment. Bit of a klud...Graydon Hoare-21/+48
2011-12-20Merge pull request #1349 from lht/driverGraydon Hoare-601/+623