about summary refs log tree commit diff
path: root/src/test/pretty/block-comment-wchar.pp
AgeCommit message (Collapse)AuthorLines
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-1/+1
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-21Fix pretty 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-6/+5
2013-11-27Update Unicode data to version 6.3Florian Zeitz-23/+23
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/+0
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-20/+26
2013-06-13checkpoint block-comment-wchar state.Felix S. Klock II-0/+110