Replace 'mutable?' with 'const'
This commit is contained in:
parent
1d361f6806
commit
b655fb9ea7
23 changed files with 53 additions and 54 deletions
|
@ -746,8 +746,7 @@ fn parse_path_and_ty_param_substs(p: parser) -> ast::path {
|
|||
|
||||
fn parse_mutability(p: parser) -> ast::mutability {
|
||||
if eat_word(p, "mutable") {
|
||||
if p.peek() == token::QUES { p.bump(); ast::maybe_mut }
|
||||
else { ast::mut }
|
||||
ast::mut
|
||||
} else if eat_word(p, "const") {
|
||||
ast::maybe_mut
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue