diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2018-06-01 16:40:33 -0600 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2019-01-24 07:37:34 -0700 |
| commit | db97c48ad6e7f36468b152e9b08efc6f2f7da691 (patch) | |
| tree | 54ba10e3c9a82e3c57929586c30ab328687afd22 /src/libsyntax/parse/parser.rs | |
| parent | 6bba352cad2117f56353d400f71e96eafa2e6bd7 (diff) | |
| download | rust-db97c48ad6e7f36468b152e9b08efc6f2f7da691.tar.gz rust-db97c48ad6e7f36468b152e9b08efc6f2f7da691.zip | |
Remove quote_*! macros and associated APIs
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 09ea0995253..624baeaf85a 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1285,9 +1285,6 @@ impl<'a> Parser<'a> { crate fn span_bug<S: Into<MultiSpan>>(&self, sp: S, m: &str) -> ! { self.sess.span_diagnostic.span_bug(sp, m) } - crate fn abort_if_errors(&self) { - self.sess.span_diagnostic.abort_if_errors(); - } fn cancel(&self, err: &mut DiagnosticBuilder) { self.sess.span_diagnostic.cancel(err) |
