Files
rust/src/libsyntax
Zack M. Davis 42ef3f1784 edit and fix bad spacing of inner-attribute-not-allowed note
This multiline string literal was missing a backslash, leaving an awkward
newline and 35 spaces in the middle of the message.

But while we're here, the existing message seems kind of long in comparison to
similar notes: to cut it down, we excise the mentions of doc comments, which
seems sensible because we know that this erroneous attribute is not a doc
comment (notice the `is_sugared_doc: false` at the end of the function; if it
had been a doc comment, that error would get set in the `token::DocComment`
match branch of `parse_outer_attributes`).
2017-10-30 17:11:33 -07:00
..
2017-08-30 01:38:54 +03:00
2017-10-27 23:01:34 +02:00
2017-09-22 22:05:18 +02:00
2017-05-24 16:40:03 -04:00
2017-10-27 23:01:34 +02:00
2017-09-20 20:48:06 +02:00
2017-08-30 01:38:54 +03:00
2017-09-22 22:05:18 +02:00
2016-11-21 09:00:56 +00:00
2017-10-27 23:01:34 +02:00
2017-06-07 12:15:39 +09:00
2017-08-30 01:38:54 +03:00
2017-10-20 16:04:32 +02:00
2017-08-30 01:38:54 +03:00
2017-08-30 01:38:54 +03:00
2017-10-27 23:01:34 +02:00

NB: This crate is part of the Rust compiler. For an overview of the compiler as a whole, see the README.md file found in librustc.

The syntax crate contains those things concerned purely with syntax that is, the AST ("abstract syntax tree"), parser, pretty-printer, lexer, macro expander, and utilities for traversing ASTs.