We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e07377 commit 33b9afaCopy full SHA for 33b9afa
src/libsyntax/parse/parser.rs
@@ -309,7 +309,8 @@ pub fn Parser(sess: @mut ParseSess,
309
quote_depth: @mut 0,
310
obsolete_set: @mut HashSet::new(),
311
mod_path_stack: @mut ~[],
312
- open_braces: @mut ~[]
+ open_braces: @mut ~[],
313
+ non_copyable: util::NonCopyable
314
}
315
316
@@ -339,7 +340,7 @@ pub struct Parser {
339
340
/// Used to determine the path to externally loaded source files
341
mod_path_stack: @mut ~[@str],
342
/// Stack of spans of open delimiters. Used for error message.
- open_braces: @mut ~[Span]
343
+ open_braces: @mut ~[Span],
344
/* do not copy the parser; its state is tied to outside state */
345
priv non_copyable: util::NonCopyable
346
0 commit comments