Skip to content
This repository was archived by the owner on Mar 1, 2019. It is now read-only.

Commit 488fbf8

Browse files
committed
FIXMEs
1 parent bbab5a8 commit 488fbf8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ impl<'a> CompilerCalls<'a> for ShimCalls {
6666
fn build_controller(&mut self, a: &Session, b: &getopts::Matches) -> CompileController<'a> {
6767
let mut result = RustcDefaultCalls.build_controller(a, b);
6868

69-
// TODO use enable_save_analysis
69+
// FIXME(#2) use enable_save_analysis
7070
result.keep_ast = true;
71+
// FIXME(#3) set continue_parse_after_error
7172

7273
result.after_analysis.callback = box |state| {
7374
time(state.session.time_passes(), "save analysis", || {
@@ -87,7 +88,7 @@ impl<'a> CompilerCalls<'a> for ShimCalls {
8788
}
8889
}
8990

90-
// TODO use exported version
91+
// FIXME(#2) use exported version
9192
fn get_args() -> Vec<String> {
9293
env::args_os().enumerate()
9394
.map(|(i, arg)| arg.into_string().unwrap_or_else(|arg| {

0 commit comments

Comments
 (0)