Remove temporary fn# syntax
This commit is contained in:
parent
6fb9d4f83b
commit
ebc61e39d7
75 changed files with 111 additions and 122 deletions
|
|
@ -195,7 +195,7 @@ fn closure_to_task(cx: cx, configport: port<[u8]>, testfn: fn@()) ->
|
|||
(cx.config, cx.procsrv.chan, testfile), run_test_task);
|
||||
}
|
||||
|
||||
fn# run_test_task(args: (common::config, procsrv::reqchan, [u8])) {
|
||||
fn run_test_task(args: (common::config, procsrv::reqchan, [u8])) {
|
||||
|
||||
let (config, procsrv_chan, testfile) = args;
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ fn mk() -> handle {
|
|||
let setupport = port();
|
||||
let task = task::spawn_joinable(
|
||||
chan(setupport),
|
||||
fn# (setupchan: chan<chan<request>>) {
|
||||
fn (setupchan: chan<chan<request>>) {
|
||||
let reqport = port();
|
||||
let reqchan = chan(reqport);
|
||||
send(setupchan, reqchan);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue