Skip to content

Commit bbbafc4

Browse files
committed
syntax: remove some dead code.
1 parent fe4e747 commit bbbafc4

File tree

1 file changed

+0
-73
lines changed

1 file changed

+0
-73
lines changed

src/libsyntax/ext/tt/macro_rules.rs

-73
Original file line numberDiff line numberDiff line change
@@ -185,79 +185,6 @@ pub fn add_new_extension(cx: @ExtCtxt,
185185
_ => cx.span_bug(sp, "wrong-structured rhs")
186186
};
187187

188-
// Given `lhses` and `rhses`, this is the new macro we create
189-
fn generic_extension(cx: @ExtCtxt,
190-
sp: Span,
191-
name: Ident,
192-
arg: &[ast::token_tree],
193-
lhses: &[@named_match],
194-
rhses: &[@named_match])
195-
-> MacResult {
196-
if cx.trace_macros() {
197-
println!("{}! \\{ {} \\}",
198-
cx.str_of(name),
199-
print::pprust::tt_to_str(
200-
&ast::tt_delim(@mut arg.to_owned()),
201-
get_ident_interner()));
202-
}
203-
204-
// Which arm's failure should we report? (the one furthest along)
205-
let mut best_fail_spot = dummy_sp();
206-
let mut best_fail_msg = ~"internal error: ran no matchers";
207-
208-
let s_d = cx.parse_sess().span_diagnostic;
209-
210-
for (i, lhs) in lhses.iter().enumerate() { // try each arm's matchers
211-
match *lhs {
212-
@matched_nonterminal(nt_matchers(ref mtcs)) => {
213-
// `none` is because we're not interpolating
214-
let arg_rdr = new_tt_reader(
215-
s_d,
216-
None,
217-
arg.to_owned()
218-
) as @mut reader;
219-
match parse(cx.parse_sess(), cx.cfg(), arg_rdr, *mtcs) {
220-
success(named_matches) => {
221-
let rhs = match rhses[i] {
222-
// okay, what's your transcriber?
223-
@matched_nonterminal(nt_tt(@ref tt)) => {
224-
match (*tt) {
225-
// cut off delimiters; don't parse 'em
226-
tt_delim(ref tts) => {
227-
(*tts).slice(1u,(*tts).len()-1u).to_owned()
228-
}
229-
_ => cx.span_fatal(
230-
sp, "macro rhs must be delimited")
231-
}
232-
},
233-
_ => cx.span_bug(sp, "bad thing in rhs")
234-
};
235-
// rhs has holes ( `$id` and `$(...)` that need filled)
236-
let trncbr = new_tt_reader(s_d, Some(named_matches),
237-
rhs);
238-
let p = @Parser(cx.parse_sess(),
239-
cx.cfg(),
240-
trncbr as @mut reader);
241-
242-
// Let the context choose how to interpret the result.
243-
// Weird, but useful for X-macros.
244-
return MRAny(@ParserAnyMacro {
245-
parser: p
246-
} as @AnyMacro);
247-
}
248-
failure(sp, ref msg) => if sp.lo >= best_fail_spot.lo {
249-
best_fail_spot = sp;
250-
best_fail_msg = (*msg).clone();
251-
},
252-
error(sp, ref msg) => cx.span_fatal(sp, (*msg))
253-
}
254-
}
255-
_ => cx.bug("non-matcher found in parsed lhses")
256-
}
257-
}
258-
cx.span_fatal(best_fail_spot, best_fail_msg);
259-
}
260-
261188
let exp = @MacroRulesSyntaxExpanderTTFun {
262189
name: name,
263190
lhses: lhses,

0 commit comments

Comments
 (0)