aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/obj-self-2.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove 'deprecated mutable...' from our codeMarijn Haverbeke2011-05-051-2/+2
| | | | This should make compilation a bit less noisy.
* Remove effect system from src.Graydon Hoare2011-04-191-2/+2
|
* Support for self-calls that take arguments.Lindsey Kuper2011-04-071-0/+19
Nicer parsing of self-calls (expr_self_method nodes inside expr_call nodes, rather than a separate expr_call_self) makes typechecking tractable. We can now write self-calls that take arguments and return values (see: test/run-pass/obj-self-*.rs).