rust/src/libsyntax/parse
bors de48274c50 auto merge of #8418 : pnkfelix/rust/fsk-issue3192-improve-parse-error-for-empty-struct-init, r=pcwalton,me
Fix #3192.  r? anyone

There are 4 different new tests, to check some different scenarios for
what the parse context is at the time of recovery, becasue our
compile-fail infrastructure does not appear to handle verifying
error-recovery situations.

Differentiate between unit-like struct definition item and unit-like
struct construction in the error message.

----

More generally, outlines a more generic strategy for parse error
recovery: By committing to an expression/statement at set points in
the parser, we can then do some look-ahead to catch common mistakes
and skip over them.

One detail about this strategy is that you want to avoid emitting the
"helpful" message unless the input is reasonably close to the case of
interest.  (E.g. do not warn about a potential unit struct for an
input of the form `let hmm = do foo { } { };`)

To accomplish this, I added (partial) last_token tracking; used for
`commit_stmt` support.

The check_for_erroneous_unit_struct_expecting fn returns bool to
signal whether it "made progress"; currently unused; this is meant for
use to compose several such recovery checks together in a loop.
2013-08-12 00:32:11 -07:00
..
attr.rs Allow attributes to appear as macro arguments 2013-08-08 19:41:02 -04:00
classify.rs syntax: implement foreach .. in .. { .. } via desugaring. 2013-07-30 18:50:28 -07:00
comments.rs libsyntax: Update from @Object to @mut Object as required 2013-08-11 13:23:40 -04:00
common.rs
lexer.rs libsyntax: Update from @Object to @mut Object as required 2013-08-11 13:23:40 -04:00
mod.rs libsyntax: Update from @Object to @mut Object as required 2013-08-11 13:23:40 -04:00
obsolete.rs Forbid priv where it has no effect 2013-08-07 22:41:12 -04:00
parser.rs auto merge of #8418 : pnkfelix/rust/fsk-issue3192-improve-parse-error-for-empty-struct-init, r=pcwalton,me 2013-08-12 00:32:11 -07:00
token.rs syntax: Shrink enum Token and enum nonterminal 2013-08-11 06:56:07 +02:00