aboutsummaryrefslogtreecommitdiff
path: root/src/parser.rs
AgeCommit message (Collapse)AuthorLines
2014-09-17Updated to _mut conventionsValerii Hiora-2/+2
2014-08-17Rename parser::Error to parser::ParseErrorBrian Koropoff-28/+28
This avoids a conflict with serialization::Error and actually re-exports it from the crate root as intended. It also fixes a build break due to the new import shadowing gate in rustc.
2014-07-18Disambiguate "" empty strings from multiline strings properly.Huon Wilson-4/+9
Previously `""` would go into multiline mode and thus *require* a following ".
2014-07-15Update an error message with \U supportAlex Crichton-1/+1
2014-07-15Implement multiline string literalsAlex Crichton-5/+125
While I'm at it, implement literal strings as well. Closes #5
2014-07-15Support \U escapes in stringsAlex Crichton-10/+20
2014-07-15Migrate to a TreeMap for determinismAlex Crichton-8/+8
2014-06-26Add a CRLF testAlex Crichton-0/+17
2014-06-25Fix "error: cannot determine the type of this integer"Daniel Trebbien-3/+3
2014-06-23Handle \r\nAlex Crichton-3/+7
2014-06-23Add a method for converting to (line, column)Alex Crichton-0/+30
2014-06-20Add documentation and examplesAlex Crichton-0/+45
2014-06-20Initial commitAlex Crichton-0/+617