about summary refs log tree commit diff
path: root/src/test/run-pass/obj-self-2.rs
AgeCommit message (Collapse)AuthorLines
2011-11-03Disallow writing to function arguments againMarijn Haverbeke-2/+2
Remove implicit copying hack. Closes #1118
2011-08-20ReformatBrian Anderson-1/+1
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-07-27Reformat for new syntaxMarijn Haverbeke-4/+4
2011-06-15Reformat source tree (minus a couple tests that are still grumpy).Graydon Hoare-17/+11
2011-05-14Remove xfail-boot lines from testsBrian Anderson-1/+0
2011-05-05Remove 'deprecated mutable...' from our codeMarijn Haverbeke-2/+2
This should make compilation a bit less noisy.
2011-04-19Remove effect system from src.Graydon Hoare-2/+2
2011-04-07Support for self-calls that take arguments.Lindsey Kuper-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).