Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ STDLIB_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rc *.rs */*.rs))

COMPILER_CRATE := $(S)src/comp/rustc.rc
COMPILER_INPUTS := $(wildcard $(addprefix $(S)src/comp/, \
rustc.rc *.rs */*.rs))
rustc.rc *.rs */*.rs */*/*.rs))

######################################################################
# Main target dependency variables
Expand Down
3 changes: 1 addition & 2 deletions src/comp/front/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ type ty_param = ident;
// Annotations added during successive passes.
type ann = rec(uint id,
middle::ty::t ty,
option::t[vec[middle::ty::t]] tps,
option::t[@ts_ann] ts);
option::t[vec[middle::ty::t]] tps);

tag def {
def_fn(def_id);
Expand Down
5 changes: 2 additions & 3 deletions src/comp/front/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,10 @@ fn new_parser(session::session sess,
fn get_chpos() -> uint {ret rdr.get_chpos();}

fn get_ann() -> ast::ann {
// TODO: Remove ty, tps, and ts. ty and tps should be unused
// TODO: Remove ty and tps, which should be unused
// by now.
auto rv = rec(id=next_ann_var, ty=0u,
tps=none[vec[middle::ty::t]],
ts=none[@middle::tstate::ann::ts_ann]);
tps=none[vec[middle::ty::t]]);
next_ann_var += 1u;
ret rv;
}
Expand Down
Loading