about summary refs log tree commit diff
path: root/src/test/run-pass/standalone-method.rs
AgeCommit message (Collapse)AuthorLines
2012-01-13Remove tests for objs, adjust tests that use objsMarijn Haverbeke-20/+0
2011-09-29Move closure construction over to DPS styleMarijn Haverbeke-0/+2
Issue #667
2011-09-16Saner approach to lvalues and callable values in transMarijn Haverbeke-3/+3
LValues no longer carry information about generics and objs, instead there's an extended form of lvalue, lval_maybe_callee, only used by call and bind, which holds this info. This makes it possible to take the value of a method and get a working closure, and will (with some more work) allow us to call statically known functions without loading from their pair. Closes #435 Closes #758
2011-09-16Revert "Saner approach to lvalues and callable values in trans"Marijn Haverbeke-3/+3
This reverts commit 66153436c9070386786c8a38cde199b5d3e71289.
2011-09-16Saner approach to lvalues and callable values in transMarijn Haverbeke-3/+3
LValues no longer carry information about generics and objs, instead there's an extended form of lvalue, lval_maybe_callee, only used by call and bind, which holds this info. This makes it possible to take the value of a method and get a working closure, and will (with some more work) allow us to call statically known functions without loading from their pair. Closes #435 Closes #758
2011-08-20ReformatBrian Anderson-10/+6
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-09Un-XFAIL a test. Issue #435.Lindsey Kuper-4/+0
2011-08-03Remove all xfail-stage0 directivesBrian Anderson-1/+0
While it is still technically possible to test stage 0, it is not part of any of the main testing rules and maintaining xfail-stage0 is a chore. Nobody should worry about how tests fare in stage0.
2011-07-28Test case for issue #435.Lindsey Kuper-0/+27