about summary refs log tree commit diff
path: root/src/test/pretty/block-comment-wchar.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-100/+0
2021-07-27Auto merge of #83491 - jyn514:remove-pretty, r=pnkfelixbors-1/+1
Remove unstable `--pretty` flag It doesn't do anything `--unpretty` doesn't, and due to a bug, also didn't show up in `--help`. I don't think there's any reason to keep it around, I haven't seen anyone using it. Closes https://github.com/rust-lang/rust/issues/36473.
2021-06-23Use HTTPS links where possibleSmitty-1/+1
2021-04-23Remove unstable `--pretty` flagJoshua Nelson-1/+1
It doesn't do anything `--unpretty` doesn't, and due to a bug, also didn't show up in `--help`. I don't think there's any reason to keep it around, I haven't seen anyone using it.
2018-12-25Remove licensesMark Rousskov-10/+0
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-1/+0
2015-03-06syntax: Remove deprecated unicode escapesAlex Crichton-4/+5
These have been deprecated for quite some time, so we should be good to remove them now.
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2014-11-04libsyntax: Forbid escapes in the inclusive range `\x80`-`\xff` inPatrick Walton-4/+4
Unicode characters and strings. Use `\u0080`-`\u00ff` instead. ASCII/byte literals are unaffected. This PR introduces a new function, `escape_default`, into the ASCII module. This was necessary for the pretty printer to continue to function. RFC #326. Closes #18062. [breaking-change]
2014-07-21Add a ton of ignore-lexer-testCorey Richardson-0/+1
2014-05-27Move std::{reflect,repr,Poly} to a libdebug crateAlex Crichton-1/+1
This commit moves reflection (as well as the {:?} format modifier) to a new libdebug crate, all of which is marked experimental. This is a breaking change because it now requires the debug crate to be explicitly linked if the :? format qualifier is used. This means that any code using this feature will have to add `extern crate debug;` to the top of the crate. Any code relying on reflection will also need to do this. Closes #12019 [breaking-change]
2014-02-11Change `xfail` directives in compiletests to `ignore`, closes #11363Florian Hahn-3/+3
2014-02-07Added tests to make tidyDerek Guenther-1/+2
2013-11-27Fix handling of upper/lowercase, and whitespaceFlorian Zeitz-3/+2
2013-11-27Update Unicode data to version 6.3Florian Zeitz-21/+21
2013-09-30pretty: Remove usage of fmt!Alex Crichton-1/+1
2013-08-03remove obsolete `foreach` keywordDaniel Micay-1/+1
this has been replaced by `for`
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-1/+1
2013-07-05Fix fallout from span changeSeo Sanghyeon-1/+1
2013-06-23vec: remove BaseIter implementationDaniel Micay-1/+1
I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway.
2013-06-14fixed code to placate new restrictions on form of function/method invocations.Felix S. Klock II-2/+2
2013-06-13make pp file conform to actual output, noting some oddities along the way.Felix S. Klock II-10/+9
2013-06-13checkpoint block-comment-wchar state.Felix S. Klock II-2/+3
2013-06-13Fix #3961 : use char range methods instead of byte offsets to detect whitespace.Felix S. Klock II-0/+109