rust/src/libsyntax/parse/parser.rs

4971 lines
175 KiB
Rust
Raw Normal View History

2013-03-02 03:57:05 +00:00
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2012-12-10 23:44:02 +00:00
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use abi;
use abi::AbiSet;
use ast::{Sigil, BorrowedSigil, ManagedSigil, OwnedSigil};
use ast::{CallSugar, NoSugar, DoSugar};
use ast::{TyBareFn, TyClosure};
use ast::{RegionTyParamBound, TraitTyParamBound};
2013-03-26 20:38:07 +00:00
use ast::{provided, public, purity};
use ast::{_mod, add, arg, arm, Attribute, bind_by_ref, bind_infer};
use ast::{bitand, bitor, bitxor, Block};
use ast::{BlockCheckMode, box};
use ast::{Crate, CrateConfig, decl, decl_item};
use ast::{decl_local, DefaultBlock, deref, div, enum_def, explicit_self};
use ast::{expr, expr_, expr_addr_of, expr_match, expr_again};
2013-03-06 22:14:06 +00:00
use ast::{expr_assign, expr_assign_op, expr_binary, expr_block};
use ast::{expr_break, expr_call, expr_cast, expr_do_body};
use ast::{expr_field, expr_fn_block, expr_if, expr_index};
use ast::{expr_lit, expr_log, expr_loop, expr_mac};
use ast::{expr_method_call, expr_paren, expr_path, expr_repeat};
use ast::{expr_ret, expr_self, expr_struct, expr_tup, expr_unary};
2013-03-26 20:38:07 +00:00
use ast::{expr_vec, expr_vstore, expr_vstore_mut_box};
use ast::{expr_vstore_slice, expr_vstore_box};
use ast::{expr_vstore_mut_slice, expr_while, expr_for_loop, extern_fn, Field, fn_decl};
2013-05-20 04:32:32 +00:00
use ast::{expr_vstore_uniq, Onceness, Once, Many};
use ast::{foreign_item, foreign_item_static, foreign_item_fn, foreign_mod};
2013-06-22 01:46:34 +00:00
use ast::{ident, impure_fn, inherited, item, item_, item_static};
2013-05-20 04:32:32 +00:00
use ast::{item_enum, item_fn, item_foreign_mod, item_impl};
use ast::{item_mac, item_mod, item_struct, item_trait, item_ty, lit, lit_};
use ast::{lit_bool, lit_float, lit_float_unsuffixed, lit_int};
use ast::{lit_int_unsuffixed, lit_nil, lit_str, lit_uint, Local, m_const};
use ast::{m_imm, m_mutbl, mac_, mac_invoc_tt, matcher, match_nonterminal};
use ast::{match_seq, match_tok, method, mt, mul, mutability};
use ast::{named_field, neg, NodeId, noreturn, not, pat, pat_box, pat_enum};
use ast::{pat_ident, pat_lit, pat_range, pat_region, pat_struct};
2013-03-26 20:38:07 +00:00
use ast::{pat_tup, pat_uniq, pat_wild, private};
use ast::{rem, required};
use ast::{ret_style, return_val, shl, shr, stmt, stmt_decl};
use ast::{stmt_expr, stmt_semi, stmt_mac, struct_def, struct_field};
use ast::{struct_variant_kind, subtract};
use ast::{sty_box, sty_region, sty_static, sty_uniq, sty_value};
use ast::{token_tree, trait_method, trait_ref, tt_delim, tt_seq, tt_tok};
use ast::{tt_nonterminal, tuple_variant_kind, Ty, ty_, ty_bot, ty_box};
use ast::{TypeField, ty_fixed_length_vec, ty_closure, ty_bare_fn};
use ast::{ty_infer, TypeMethod};
use ast::{ty_nil, TyParam, TyParamBound, ty_path, ty_ptr, ty_rptr};
use ast::{ty_tup, ty_u32, ty_uniq, ty_vec, uniq};
use ast::{unnamed_field, UnsafeBlock, unsafe_fn, view_item};
use ast::{view_item_, view_item_extern_mod, view_item_use};
use ast::{view_path, view_path_glob, view_path_list, view_path_simple};
2013-03-26 20:38:07 +00:00
use ast::visibility;
use ast;
2013-06-25 05:13:22 +00:00
use ast_util::{as_prec, operator_prec};
use ast_util;
2013-03-26 20:38:07 +00:00
use codemap::{span, BytePos, spanned, mk_sp};
use codemap;
use parse::attr::parser_attr;
use parse::classify;
use parse::common::{SeqSep, seq_sep_none};
use parse::common::{seq_sep_trailing_disallowed, seq_sep_trailing_allowed};
use parse::lexer::reader;
2013-01-30 17:56:33 +00:00
use parse::lexer::TokenAndSpan;
2013-03-26 20:38:07 +00:00
use parse::obsolete::{ObsoleteClassTraits};
use parse::obsolete::{ObsoleteLet, ObsoleteFieldTerminator};
use parse::obsolete::{ObsoleteMoveInit, ObsoleteBinaryMove, ObsoleteSwap};
use parse::obsolete::ObsoleteSyntax;
use parse::obsolete::{ObsoleteUnsafeBlock, ObsoleteImplSyntax};
use parse::obsolete::{ObsoleteMutOwnedPointer};
use parse::obsolete::{ObsoleteMutVector, ObsoleteImplVisibility};
use parse::obsolete::{ObsoleteRecordType, ObsoleteRecordPattern};
use parse::obsolete::{ObsoletePostFnTySigil};
2013-03-08 02:59:00 +00:00
use parse::obsolete::{ObsoleteBareFnType, ObsoleteNewtypeEnum};
2013-03-26 20:38:07 +00:00
use parse::obsolete::ObsoleteMode;
use parse::obsolete::{ObsoleteLifetimeNotation, ObsoleteConstManagedPointer};
use parse::obsolete::{ObsoletePurity, ObsoleteStaticMethod};
2013-03-23 02:22:12 +00:00
use parse::obsolete::{ObsoleteConstItem, ObsoleteFixedLengthVectorType};
use parse::obsolete::{ObsoleteNamedExternModule, ObsoleteMultipleLocalDecl};
use parse::obsolete::{ObsoleteMutWithMultipleBindings};
use parse::obsolete::{ObsoleteExternVisibility, ObsoleteUnsafeExternFn};
use parse::obsolete::{ParserObsoleteMethods};
2013-06-07 22:47:05 +00:00
use parse::token::{can_begin_expr, get_ident_interner, ident_to_str, is_ident};
use parse::token::{is_ident_or_path};
use parse::token::{is_plain_ident, INTERPOLATED, keywords, special_idents};
use parse::token::{token_to_binop};
use parse::token;
use parse::{new_sub_parser_from_file, next_node_id, ParseSess};
use opt_vec;
use opt_vec::OptVec;
2013-06-25 00:40:33 +00:00
use std::either::Either;
use std::either;
use std::hashmap::HashSet;
2013-07-02 19:47:32 +00:00
use std::util;
2013-06-25 00:40:33 +00:00
use std::vec;
#[deriving(Eq)]
2012-01-19 22:24:03 +00:00
enum restriction {
2012-01-20 01:56:05 +00:00
UNRESTRICTED,
RESTRICT_STMT_EXPR,
RESTRICT_NO_BAR_OP,
RESTRICT_NO_BAR_OR_DOUBLEBAR_OP,
}
type arg_or_capture_item = Either<arg, ()>;
type item_info = (ident, item_, Option<~[Attribute]>);
pub enum item_or_view_item {
2013-07-02 19:47:32 +00:00
// Indicates a failure to parse any kind of item. The attributes are
// returned.
iovi_none(~[Attribute]),
iovi_item(@item),
iovi_foreign_item(@foreign_item),
2013-07-05 08:28:53 +00:00
iovi_view_item(view_item)
}
#[deriving(Eq)]
2012-08-14 21:22:52 +00:00
enum view_item_parse_mode {
VIEW_ITEMS_AND_ITEMS_ALLOWED,
FOREIGN_ITEMS_ALLOWED,
2012-08-14 21:22:52 +00:00
IMPORTS_AND_ITEMS_ALLOWED
}
/* The expr situation is not as complex as I thought it would be.
The important thing is to make sure that lookahead doesn't balk
at INTERPOLATED tokens */
2012-08-23 00:24:52 +00:00
macro_rules! maybe_whole_expr (
($p:expr) => (
2013-07-05 10:15:21 +00:00
{
// This horrible convolution is brought to you by
// @mut, have a terrible day
let ret = match *($p).token {
INTERPOLATED(token::nt_expr(e)) => {
Some(e)
}
INTERPOLATED(token::nt_path(ref pt)) => {
Some($p.mk_expr(
($p).span.lo,
($p).span.hi,
2013-07-02 19:47:32 +00:00
expr_path(/* bad */ (*pt).clone())))
2013-07-05 10:15:21 +00:00
}
_ => None
};
match ret {
Some(e) => {
$p.bump();
return e;
}
None => ()
}
}
)
2012-08-23 00:24:52 +00:00
)
2012-08-23 00:24:52 +00:00
macro_rules! maybe_whole (
2013-03-02 21:02:27 +00:00
($p:expr, $constructor:ident) => (
2013-07-02 19:47:32 +00:00
{
let __found__ = match *($p).token {
INTERPOLATED(token::$constructor(_)) => {
Some(($p).bump_and_get())
}
_ => None
};
match __found__ {
Some(INTERPOLATED(token::$constructor(x))) => {
return x.clone()
}
_ => {}
2013-03-02 21:02:27 +00:00
}
2013-07-02 19:47:32 +00:00
}
2013-03-02 21:02:27 +00:00
);
(deref $p:expr, $constructor:ident) => (
2013-07-02 19:47:32 +00:00
{
let __found__ = match *($p).token {
INTERPOLATED(token::$constructor(_)) => {
Some(($p).bump_and_get())
}
_ => None
};
match __found__ {
Some(INTERPOLATED(token::$constructor(x))) => {
return (*x).clone()
}
_ => {}
2013-03-02 21:02:27 +00:00
}
}
);
(Some $p:expr, $constructor:ident) => (
2013-07-02 19:47:32 +00:00
{
let __found__ = match *($p).token {
INTERPOLATED(token::$constructor(_)) => {
Some(($p).bump_and_get())
}
_ => None
};
match __found__ {
Some(INTERPOLATED(token::$constructor(x))) => {
return Some(x.clone()),
}
_ => {}
2013-03-02 21:02:27 +00:00
}
}
);
(iovi $p:expr, $constructor:ident) => (
2013-07-02 19:47:32 +00:00
{
let __found__ = match *($p).token {
INTERPOLATED(token::$constructor(_)) => {
Some(($p).bump_and_get())
}
_ => None
};
match __found__ {
Some(INTERPOLATED(token::$constructor(x))) => {
return iovi_item(x.clone())
}
_ => {}
2013-03-02 21:02:27 +00:00
}
}
);
(pair_empty $p:expr, $constructor:ident) => (
2013-07-02 19:47:32 +00:00
{
let __found__ = match *($p).token {
INTERPOLATED(token::$constructor(_)) => {
Some(($p).bump_and_get())
}
_ => None
};
match __found__ {
Some(INTERPOLATED(token::$constructor(x))) => {
return (~[], x.clone())
}
_ => {}
2013-03-02 21:02:27 +00:00
}
}
)
2012-08-23 00:24:52 +00:00
)
fn maybe_append(lhs: ~[Attribute], rhs: Option<~[Attribute]>)
-> ~[Attribute] {
match rhs {
2012-08-20 19:23:37 +00:00
None => lhs,
Some(ref attrs) => vec::append(lhs, (*attrs))
}
}
struct ParsedItemsAndViewItems {
attrs_remaining: ~[Attribute],
2013-07-05 08:28:53 +00:00
view_items: ~[view_item],
items: ~[@item],
foreign_items: ~[@foreign_item]
}
2012-08-01 21:34:35 +00:00
/* ident is handled by common.rs */
pub fn Parser(sess: @mut ParseSess,
cfg: ast::CrateConfig,
rdr: @reader)
-> Parser {
2013-07-02 19:47:32 +00:00
let tok0 = rdr.next_token();
2013-05-17 17:18:35 +00:00
let interner = get_ident_interner();
2013-07-02 19:47:32 +00:00
let span = tok0.sp;
let placeholder = TokenAndSpan {
tok: token::UNDERSCORE,
sp: span,
};
2012-09-05 22:58:43 +00:00
Parser {
reader: rdr,
interner: interner,
2012-09-05 22:58:43 +00:00
sess: sess,
cfg: cfg,
2013-07-02 19:47:32 +00:00
token: @mut tok0.tok,
span: @mut span,
last_span: @mut span,
buffer: @mut ([
placeholder.clone(),
placeholder.clone(),
placeholder.clone(),
placeholder.clone(),
]),
buffer_start: @mut 0,
buffer_end: @mut 0,
2013-02-25 02:32:02 +00:00
tokens_consumed: @mut 0,
restriction: @mut UNRESTRICTED,
2013-02-25 02:32:02 +00:00
quote_depth: @mut 0,
obsolete_set: @mut HashSet::new(),
mod_path_stack: @mut ~[],
2012-09-05 22:58:43 +00:00
}
}
2013-03-08 18:19:19 +00:00
// ooh, nasty mutable fields everywhere....
pub struct Parser {
sess: @mut ParseSess,
cfg: CrateConfig,
// the current token:
token: @mut token::Token,
// the span of the current token:
span: @mut span,
// the span of the prior token:
last_span: @mut span,
buffer: @mut [TokenAndSpan, ..4],
buffer_start: @mut int,
buffer_end: @mut int,
tokens_consumed: @mut uint,
restriction: @mut restriction,
quote_depth: @mut uint, // not (yet) related to the quasiquoter
reader: @reader,
interner: @token::ident_interner,
/// The set of seen errors about obsolete syntax. Used to suppress
/// extra detail when the same error is seen twice
obsolete_set: @mut HashSet<ObsoleteSyntax>,
/// Used to determine the path to externally loaded source files
mod_path_stack: @mut ~[@str],
}
#[unsafe_destructor]
impl Drop for Parser {
/* do not copy the parser; its state is tied to outside state */
2013-06-21 01:06:13 +00:00
fn drop(&self) {}
}
impl Parser {
// convert a token to a string using self's reader
pub fn token_to_str(&self, token: &token::Token) -> ~str {
token::to_str(get_ident_interner(), token)
}
// convert the current token to a string using self's reader
pub fn this_token_to_str(&self) -> ~str {
self.token_to_str(self.token)
}
pub fn unexpected_last(&self, t: &token::Token) -> ! {
self.span_fatal(
*self.last_span,
fmt!(
"unexpected token: `%s`",
self.token_to_str(t)
)
);
}
pub fn unexpected(&self) -> ! {
self.fatal(
fmt!(
"unexpected token: `%s`",
self.this_token_to_str()
)
);
}
// expect and consume the token t. Signal an error if
// the next token is not t.
pub fn expect(&self, t: &token::Token) {
if *self.token == *t {
self.bump();
} else {
self.fatal(
fmt!(
"expected `%s` but found `%s`",
self.token_to_str(t),
self.this_token_to_str()
)
)
}
}
pub fn parse_ident(&self) -> ast::ident {
self.check_strict_keywords();
self.check_reserved_keywords();
match *self.token {
token::IDENT(i, _) => {
self.bump();
i
}
token::INTERPOLATED(token::nt_ident(*)) => {
self.bug("ident interpolation not converted to real token");
}
_ => {
self.fatal(
fmt!(
"expected ident, found `%s`",
self.this_token_to_str()
)
);
}
}
}
pub fn parse_path_list_ident(&self) -> ast::path_list_ident {
let lo = self.span.lo;
let ident = self.parse_ident();
let hi = self.last_span.hi;
spanned(lo, hi, ast::path_list_ident_ { name: ident,
id: self.get_id() })
}
// consume token 'tok' if it exists. Returns true if the given
// token was present, false otherwise.
pub fn eat(&self, tok: &token::Token) -> bool {
2013-07-18 03:04:37 +00:00
let is_present = *self.token == *tok;
if is_present { self.bump() }
is_present
}
pub fn is_keyword(&self, kw: keywords::Keyword) -> bool {
token::is_keyword(kw, self.token)
}
// if the next token is the given keyword, eat it and return
// true. Otherwise, return false.
pub fn eat_keyword(&self, kw: keywords::Keyword) -> bool {
let is_kw = match *self.token {
token::IDENT(sid, false) => kw.to_ident().name == sid.name,
_ => false
};
if is_kw { self.bump() }
is_kw
}
// if the given word is not a keyword, signal an error.
// if the next token is not the given word, signal an error.
// otherwise, eat it.
pub fn expect_keyword(&self, kw: keywords::Keyword) {
if !self.eat_keyword(kw) {
self.fatal(
fmt!(
"expected `%s`, found `%s`",
2013-06-15 02:40:11 +00:00
self.id_to_str(kw.to_ident()).to_str(),
self.this_token_to_str()
)
);
}
}
// signal an error if the given string is a strict keyword
pub fn check_strict_keywords(&self) {
if token::is_strict_keyword(self.token) {
self.span_err(*self.last_span,
fmt!("found `%s` in ident position", self.this_token_to_str()));
}
}
// signal an error if the current token is a reserved keyword
pub fn check_reserved_keywords(&self) {
if token::is_reserved_keyword(self.token) {
self.fatal(fmt!("`%s` is a reserved keyword", self.this_token_to_str()));
}
}
// expect and consume a GT. if a >> is seen, replace it
// with a single > and continue. If a GT is not seen,
// signal an error.
pub fn expect_gt(&self) {
2013-07-18 03:04:37 +00:00
match *self.token {
token::GT => self.bump(),
token::BINOP(token::SHR) => self.replace_token(
token::GT,
self.span.lo + BytePos(1u),
self.span.hi
2013-07-18 03:04:37 +00:00
),
_ => self.fatal(fmt!("expected `%s`, found `%s`",
self.token_to_str(&token::GT),
self.this_token_to_str()))
}
}
// parse a sequence bracketed by '<' and '>', stopping
// before the '>'.
pub fn parse_seq_to_before_gt<T>(&self,
sep: Option<token::Token>,
f: &fn(&Parser) -> T)
-> OptVec<T> {
let mut first = true;
let mut v = opt_vec::Empty;
while *self.token != token::GT
&& *self.token != token::BINOP(token::SHR) {
match sep {
Some(ref t) => {
if first { first = false; }
else { self.expect(t); }
}
_ => ()
}
v.push(f(self));
}
return v;
}
pub fn parse_seq_to_gt<T>(&self,
sep: Option<token::Token>,
f: &fn(&Parser) -> T)
-> OptVec<T> {
let v = self.parse_seq_to_before_gt(sep, f);
self.expect_gt();
return v;
}
// parse a sequence, including the closing delimiter. The function
// f must consume tokens until reaching the next separator or
// closing bracket.
pub fn parse_seq_to_end<T>(&self,
ket: &token::Token,
sep: SeqSep,
f: &fn(&Parser) -> T)
-> ~[T] {
let val = self.parse_seq_to_before_end(ket, sep, f);
self.bump();
val
}
// parse a sequence, not including the closing delimiter. The function
// f must consume tokens until reaching the next separator or
// closing bracket.
pub fn parse_seq_to_before_end<T>(&self,
ket: &token::Token,
sep: SeqSep,
f: &fn(&Parser) -> T)
-> ~[T] {
let mut first: bool = true;
let mut v: ~[T] = ~[];
while *self.token != *ket {
match sep.sep {
Some(ref t) => {
if first { first = false; }
else { self.expect(t); }
}
_ => ()
}
if sep.trailing_sep_allowed && *self.token == *ket { break; }
v.push(f(self));
}
return v;
}
// parse a sequence, including the closing delimiter. The function
// f must consume tokens until reaching the next separator or
// closing bracket.
pub fn parse_unspanned_seq<T>(&self,
bra: &token::Token,
ket: &token::Token,
sep: SeqSep,
f: &fn(&Parser) -> T)
-> ~[T] {
self.expect(bra);
let result = self.parse_seq_to_before_end(ket, sep, f);
self.bump();
result
}
// NB: Do not use this function unless you actually plan to place the
// spanned list in the AST.
pub fn parse_seq<T>(&self,
bra: &token::Token,
ket: &token::Token,
sep: SeqSep,
f: &fn(&Parser) -> T)
-> spanned<~[T]> {
let lo = self.span.lo;
self.expect(bra);
let result = self.parse_seq_to_before_end(ket, sep, f);
let hi = self.span.hi;
self.bump();
spanned(lo, hi, result)
}
2013-01-30 17:56:33 +00:00
// advance the parser by one token
pub fn bump(&self) {
*self.last_span = *self.span;
let next = if *self.buffer_start == *self.buffer_end {
2012-06-15 16:32:17 +00:00
self.reader.next_token()
} else {
2013-07-02 19:47:32 +00:00
// Avoid token copies with `util::replace`.
let buffer_start = *self.buffer_start as uint;
let next_index = (buffer_start + 1) & 3 as uint;
*self.buffer_start = next_index as int;
let placeholder = TokenAndSpan {
tok: token::UNDERSCORE,
sp: *self.span,
};
util::replace(&mut self.buffer[buffer_start], placeholder)
2012-06-15 16:32:17 +00:00
};
*self.span = next.sp;
2013-07-02 19:47:32 +00:00
*self.token = next.tok;
*self.tokens_consumed += 1u;
}
2013-07-02 19:47:32 +00:00
// Advance the parser by one token and return the bumped token.
pub fn bump_and_get(&self) -> token::Token {
let old_token = util::replace(self.token, token::UNDERSCORE);
self.bump();
old_token
}
2013-01-30 17:56:33 +00:00
// EFFECT: replace the current token and span with the given one
pub fn replace_token(&self,
next: token::Token,
lo: BytePos,
hi: BytePos) {
*self.token = next;
*self.span = mk_sp(lo, hi);
}
pub fn buffer_length(&self) -> int {
if *self.buffer_start <= *self.buffer_end {
return *self.buffer_end - *self.buffer_start;
}
return (4 - *self.buffer_start) + *self.buffer_end;
}
2013-07-02 19:47:32 +00:00
pub fn look_ahead<R>(&self, distance: uint, f: &fn(&token::Token) -> R)
-> R {
let dist = distance as int;
while self.buffer_length() < dist {
self.buffer[*self.buffer_end] = self.reader.next_token();
*self.buffer_end = (*self.buffer_end + 1) & 3;
}
2013-07-02 19:47:32 +00:00
f(&self.buffer[(*self.buffer_start + dist - 1) & 3].tok)
}
pub fn fatal(&self, m: &str) -> ! {
self.sess.span_diagnostic.span_fatal(*self.span, m)
}
pub fn span_fatal(&self, sp: span, m: &str) -> ! {
self.sess.span_diagnostic.span_fatal(sp, m)
}
pub fn span_note(&self, sp: span, m: &str) {
self.sess.span_diagnostic.span_note(sp, m)
}
pub fn bug(&self, m: &str) -> ! {
self.sess.span_diagnostic.span_bug(*self.span, m)
}
pub fn warn(&self, m: &str) {
self.sess.span_diagnostic.span_warn(*self.span, m)
}
pub fn span_err(&self, sp: span, m: &str) {
self.sess.span_diagnostic.span_err(sp, m)
}
pub fn abort_if_errors(&self) {
self.sess.span_diagnostic.handler().abort_if_errors();
}
pub fn get_id(&self) -> NodeId { next_node_id(self.sess) }
pub fn id_to_str(&self, id: ident) -> @str {
get_ident_interner().get(id.name)
2013-03-02 21:02:27 +00:00
}
2012-07-18 23:18:02 +00:00
2013-03-08 18:19:19 +00:00
// is this one of the keywords that signals a closure type?
pub fn token_is_closure_keyword(&self, tok: &token::Token) -> bool {
token::is_keyword(keywords::Pure, tok) ||
token::is_keyword(keywords::Unsafe, tok) ||
token::is_keyword(keywords::Once, tok) ||
token::is_keyword(keywords::Fn, tok)
}
pub fn token_is_lifetime(&self, tok: &token::Token) -> bool {
match *tok {
token::LIFETIME(*) => true,
_ => false,
}
}
pub fn get_lifetime(&self, tok: &token::Token) -> ast::ident {
match *tok {
token::LIFETIME(ref ident) => *ident,
_ => self.bug("not a lifetime"),
}
}
2013-03-08 18:19:19 +00:00
// parse a ty_bare_fun type:
pub fn parse_ty_bare_fn(&self) -> ty_ {
/*
extern "ABI" [pure|unsafe] fn <'lt> (S) -> T
^~~~^ ^~~~~~~~~~~~^ ^~~~^ ^~^ ^
| | | | |
| | | | Return type
| | | Argument types
| | Lifetimes
| |
| Purity
ABI
*/
let opt_abis = self.parse_opt_abis();
let abis = opt_abis.unwrap_or_default(AbiSet::Rust());
2013-04-19 22:48:02 +00:00
let purity = self.parse_unsafety();
self.expect_keyword(keywords::Fn);
let (decl, lifetimes) = self.parse_ty_fn_decl();
return ty_bare_fn(@TyBareFn {
abis: abis,
purity: purity,
lifetimes: lifetimes,
decl: decl
});
}
2013-03-08 18:19:19 +00:00
// parse a ty_closure type
pub fn parse_ty_closure(&self,
sigil: ast::Sigil,
2013-07-05 12:33:52 +00:00
region: Option<ast::Lifetime>)
-> ty_ {
/*
(&|~|@) ['r] [pure|unsafe] [once] fn [:Bounds] <'lt> (S) -> T
^~~~~~^ ^~~^ ^~~~~~~~~~~~^ ^~~~~^ ^~~~~~~~^ ^~~~^ ^~^ ^
| | | | | | | |
| | | | | | | Return type
| | | | | | Argument types
| | | | | Lifetimes
| | | | Closure bounds
| | | Once-ness (a.k.a., affine)
| | Purity
| Lifetime bound
Allocation type
*/
// At this point, the allocation type and lifetime bound have been
// parsed.
2013-04-19 22:48:02 +00:00
let purity = self.parse_unsafety();
2013-03-02 21:02:27 +00:00
let onceness = parse_onceness(self);
self.expect_keyword(keywords::Fn);
let bounds = self.parse_optional_ty_param_bounds();
if self.parse_fn_ty_sigil().is_some() {
self.obsolete(*self.span, ObsoletePostFnTySigil);
}
let (decl, lifetimes) = self.parse_ty_fn_decl();
return ty_closure(@TyClosure {
sigil: sigil,
region: region,
purity: purity,
onceness: onceness,
bounds: bounds,
decl: decl,
lifetimes: lifetimes,
});
fn parse_onceness(this: &Parser) -> Onceness {
if this.eat_keyword(keywords::Once) {
Once
} else {
Many
}
}
2012-05-25 06:44:58 +00:00
}
2013-04-19 22:48:02 +00:00
// looks like this should be called parse_unsafety
pub fn parse_unsafety(&self) -> purity {
if self.eat_keyword(keywords::Pure) {
self.obsolete(*self.last_span, ObsoletePurity);
return impure_fn;
} else if self.eat_keyword(keywords::Unsafe) {
return unsafe_fn;
} else {
return impure_fn;
}
}
2013-03-08 18:19:19 +00:00
// parse a function type (following the 'fn')
pub fn parse_ty_fn_decl(&self) -> (fn_decl, OptVec<ast::Lifetime>) {
/*
(fn) <'lt> (S) -> T
^~~~^ ^~^ ^
| | |
| | Return type
| Argument types
Lifetimes
*/
let lifetimes = if self.eat(&token::LT) {
let lifetimes = self.parse_lifetimes();
self.expect_gt();
lifetimes
} else {
opt_vec::Empty
};
let inputs = self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
seq_sep_trailing_disallowed(token::COMMA),
2013-02-24 23:41:54 +00:00
|p| p.parse_arg_general(false)
);
let (ret_style, ret_ty) = self.parse_ret_ty();
let decl = ast::fn_decl {
inputs: inputs,
output: ret_ty,
cf: ret_style
};
(decl, lifetimes)
}
2013-04-02 23:44:01 +00:00
// parse the methods in a trait declaration
pub fn parse_trait_methods(&self) -> ~[trait_method] {
2013-02-24 23:41:54 +00:00
do self.parse_unspanned_seq(
&token::LBRACE,
&token::RBRACE,
2013-02-24 23:41:54 +00:00
seq_sep_none()
) |p| {
2012-05-24 20:44:42 +00:00
let attrs = p.parse_outer_attributes();
let lo = p.span.lo;
2012-10-24 13:51:33 +00:00
let vis = p.parse_visibility();
let pur = p.parse_fn_purity();
// NB: at the moment, trait methods are public by default; this
// could change.
2013-03-06 17:30:54 +00:00
let ident = p.parse_ident();
let generics = p.parse_generics();
let (explicit_self, d) = do self.parse_fn_decl_with_self() |p| {
// This is somewhat dubious; We don't want to allow argument
// names to be left off if there is a definition...
either::Left(p.parse_arg_general(false))
};
let hi = p.last_span.hi;
2012-08-23 00:24:52 +00:00
debug!("parse_trait_methods(): trait method signature ends in \
`%s`",
self.this_token_to_str());
match *p.token {
2012-08-04 02:59:04 +00:00
token::SEMI => {
p.bump();
2012-08-23 00:24:52 +00:00
debug!("parse_trait_methods(): parsing required method");
// NB: at the moment, visibility annotations on required
// methods are ignored; this could change.
required(TypeMethod {
ident: ident,
attrs: attrs,
purity: pur,
decl: d,
generics: generics,
explicit_self: explicit_self,
id: p.get_id(),
span: mk_sp(lo, hi)
})
}
2012-08-04 02:59:04 +00:00
token::LBRACE => {
2012-08-23 00:24:52 +00:00
debug!("parse_trait_methods(): parsing provided method");
let (inner_attrs, body) =
p.parse_inner_attrs_and_block();
let attrs = vec::append(attrs, inner_attrs);
provided(@ast::method {
ident: ident,
attrs: attrs,
generics: generics,
explicit_self: explicit_self,
purity: pur,
decl: d,
body: body,
id: p.get_id(),
span: mk_sp(lo, hi),
self_id: p.get_id(),
vis: vis,
})
}
2013-02-25 02:32:02 +00:00
_ => {
p.fatal(
fmt!(
"expected `;` or `}` but found `%s`",
self.this_token_to_str()
2013-02-25 02:32:02 +00:00
)
);
}
}
}
}
2013-03-08 18:19:19 +00:00
// parse a possibly mutable type
pub fn parse_mt(&self) -> mt {
let mutbl = self.parse_mutability();
2013-07-06 04:57:11 +00:00
let t = ~self.parse_ty(false);
mt { ty: t, mutbl: mutbl }
}
2013-03-08 18:19:19 +00:00
// parse [mut/const/imm] ID : TY
2013-04-02 23:44:01 +00:00
// now used only by obsolete record syntax parser...
pub fn parse_ty_field(&self) -> TypeField {
let lo = self.span.lo;
let mutbl = self.parse_mutability();
2012-05-24 19:38:45 +00:00
let id = self.parse_ident();
self.expect(&token::COLON);
2013-07-06 04:57:11 +00:00
let ty = ~self.parse_ty(false);
let hi = ty.span.hi;
ast::TypeField {
ident: id,
mt: ast::mt { ty: ty, mutbl: mutbl },
span: mk_sp(lo, hi),
}
}
2013-03-08 18:19:19 +00:00
// parse optional return type [ -> TY ] in function decl
2013-07-06 04:57:11 +00:00
pub fn parse_ret_ty(&self) -> (ret_style, Ty) {
2013-02-24 17:54:41 +00:00
return if self.eat(&token::RARROW) {
let lo = self.span.lo;
2013-02-24 17:54:41 +00:00
if self.eat(&token::NOT) {
2013-01-15 22:59:39 +00:00
(
noreturn,
2013-07-06 04:57:11 +00:00
Ty {
2013-01-15 22:59:39 +00:00
id: self.get_id(),
node: ty_bot,
span: mk_sp(lo, self.last_span.hi)
}
)
} else {
(return_val, self.parse_ty(false))
}
} else {
let pos = self.span.lo;
2013-01-15 22:59:39 +00:00
(
return_val,
2013-07-06 04:57:11 +00:00
Ty {
2013-01-15 22:59:39 +00:00
id: self.get_id(),
node: ty_nil,
span: mk_sp(pos, pos),
}
)
}
}
2012-04-10 00:32:49 +00:00
2013-03-08 18:19:19 +00:00
// parse a type.
// Useless second parameter for compatibility with quasiquote macros.
// Bleh!
2013-07-06 04:57:11 +00:00
pub fn parse_ty(&self, _: bool) -> Ty {
2012-08-23 00:24:52 +00:00
maybe_whole!(self, nt_ty);
2012-08-01 21:34:35 +00:00
let lo = self.span.lo;
let t = if *self.token == token::LPAREN {
self.bump();
if *self.token == token::RPAREN {
self.bump();
ty_nil
} else {
// (t) is a parenthesized ty
// (t,) is the type of a tuple with only one field,
// of type t
let mut ts = ~[self.parse_ty(false)];
let mut one_tuple = false;
while *self.token == token::COMMA {
self.bump();
if *self.token != token::RPAREN {
ts.push(self.parse_ty(false));
}
else {
one_tuple = true;
}
}
2013-07-02 19:47:32 +00:00
if ts.len() == 1 && !one_tuple {
self.expect(&token::RPAREN);
return ts[0]
}
let t = ty_tup(ts);
self.expect(&token::RPAREN);
t
2011-08-15 10:18:27 +00:00
}
} else if *self.token == token::AT {
2013-03-08 18:19:19 +00:00
// MANAGED POINTER
self.bump();
self.parse_box_or_uniq_pointee(ManagedSigil, ty_box)
} else if *self.token == token::TILDE {
2013-03-08 18:19:19 +00:00
// OWNED POINTER
self.bump();
self.parse_box_or_uniq_pointee(OwnedSigil, ty_uniq)
} else if *self.token == token::BINOP(token::STAR) {
2013-03-08 18:19:19 +00:00
// STAR POINTER (bare pointer?)
self.bump();
ty_ptr(self.parse_mt())
} else if *self.token == token::LBRACE {
2013-03-08 18:19:19 +00:00
// STRUCTURAL RECORD (remove?)
let elems = self.parse_unspanned_seq(
&token::LBRACE,
&token::RBRACE,
seq_sep_trailing_allowed(token::COMMA),
2013-02-24 23:41:54 +00:00
|p| p.parse_ty_field()
);
2013-02-25 04:51:56 +00:00
if elems.len() == 0 {
self.unexpected_last(&token::RBRACE);
}
self.obsolete(*self.last_span, ObsoleteRecordType);
ty_nil
} else if *self.token == token::LBRACKET {
2013-03-08 18:19:19 +00:00
// VECTOR
self.expect(&token::LBRACKET);
let mt = self.parse_mt();
if mt.mutbl == m_mutbl { // `m_const` too after snapshot
self.obsolete(*self.last_span, ObsoleteMutVector);
}
// Parse the `, ..e` in `[ int, ..e ]`
// where `e` is a const expression
let t = match self.maybe_parse_fixed_vstore() {
None => ty_vec(mt),
Some(suffix) => ty_fixed_length_vec(mt, suffix)
};
self.expect(&token::RBRACKET);
t
} else if *self.token == token::BINOP(token::AND) {
2013-03-08 18:19:19 +00:00
// BORROWED POINTER
self.bump();
self.parse_borrowed_pointee()
} else if self.eat_keyword(keywords::Extern) {
2013-03-08 18:19:19 +00:00
// EXTERN FUNCTION
self.parse_ty_bare_fn()
2013-07-02 19:47:32 +00:00
} else if self.token_is_closure_keyword(self.token) {
2013-03-08 18:19:19 +00:00
// CLOSURE
2013-03-08 02:59:00 +00:00
let result = self.parse_ty_closure(ast::BorrowedSigil, None);
self.obsolete(*self.last_span, ObsoleteBareFnType);
result
} else if *self.token == token::MOD_SEP
|| is_ident_or_path(self.token) {
2013-03-08 18:19:19 +00:00
// NAMED TYPE
let (path, bounds) = self.parse_type_path();
2013-07-06 01:38:56 +00:00
ty_path(path, bounds, self.get_id())
} else {
self.fatal(fmt!("expected type, found token %?",
*self.token));
};
let sp = mk_sp(lo, self.last_span.hi);
2013-07-06 04:57:11 +00:00
Ty {id: self.get_id(), node: t, span: sp}
}
2013-03-29 17:35:23 +00:00
// parse the type following a @ or a ~
pub fn parse_box_or_uniq_pointee(&self,
sigil: ast::Sigil,
ctor: &fn(v: mt) -> ty_) -> ty_ {
// @'foo fn() or @foo/fn() or @fn() are parsed directly as fn types:
match *self.token {
token::LIFETIME(*) => {
2013-07-05 12:33:52 +00:00
let lifetime = self.parse_lifetime();
self.bump();
return self.parse_ty_closure(sigil, Some(lifetime));
}
token::IDENT(*) => {
2013-07-02 19:47:32 +00:00
if self.look_ahead(1, |t| *t == token::BINOP(token::SLASH)) &&
self.look_ahead(2, |t|
self.token_is_closure_keyword(t)) {
2013-07-05 12:33:52 +00:00
let lifetime = self.parse_lifetime();
self.obsolete(*self.last_span, ObsoleteLifetimeNotation);
return self.parse_ty_closure(sigil, Some(lifetime));
2013-07-02 19:47:32 +00:00
} else if self.token_is_closure_keyword(self.token) {
return self.parse_ty_closure(sigil, None);
}
}
_ => {}
}
// other things are parsed as @ + a type. Note that constructs like
// @[] and @str will be resolved during typeck to slices and so forth,
// rather than boxed ptrs. But the special casing of str/vec is not
// reflected in the AST type.
let mt = self.parse_mt();
2013-02-25 23:54:13 +00:00
if mt.mutbl != m_imm && sigil == OwnedSigil {
2013-02-25 23:54:13 +00:00
self.obsolete(*self.last_span, ObsoleteMutOwnedPointer);
}
if mt.mutbl == m_const && sigil == ManagedSigil {
self.obsolete(*self.last_span, ObsoleteConstManagedPointer);
}
2013-02-25 23:54:13 +00:00
ctor(mt)
}
pub fn parse_borrowed_pointee(&self) -> ty_ {
// look for `&'lt` or `&'foo ` and interpret `foo` as the region name:
let opt_lifetime = self.parse_opt_lifetime();
2013-07-02 19:47:32 +00:00
if self.token_is_closure_keyword(self.token) {
return self.parse_ty_closure(BorrowedSigil, opt_lifetime);
}
let mt = self.parse_mt();
return ty_rptr(opt_lifetime, mt);
}
// parse an optional, obsolete argument mode.
pub fn parse_arg_mode(&self) {
2013-02-24 17:54:41 +00:00
if self.eat(&token::BINOP(token::MINUS)) {
self.obsolete(*self.span, ObsoleteMode);
2013-02-24 17:54:41 +00:00
} else if self.eat(&token::ANDAND) {
self.obsolete(*self.span, ObsoleteMode);
2013-02-24 17:54:41 +00:00
} else if self.eat(&token::BINOP(token::PLUS)) {
if self.eat(&token::BINOP(token::PLUS)) {
self.obsolete(*self.span, ObsoleteMode);
} else {
self.obsolete(*self.span, ObsoleteMode);
}
} else {
// Ignore.
}
}
pub fn is_named_argument(&self) -> bool {
2013-07-18 03:04:37 +00:00
let offset = match *self.token {
token::BINOP(token::AND) => 1,
token::BINOP(token::MINUS) => 1,
token::ANDAND => 1,
token::BINOP(token::PLUS) => {
if self.look_ahead(1, |t| *t == token::BINOP(token::PLUS)) {
2
} else {
1
}
},
_ => 0
};
if offset == 0 {
is_plain_ident(&*self.token)
2013-07-02 19:47:32 +00:00
&& self.look_ahead(1, |t| *t == token::COLON)
} else {
2013-07-02 19:47:32 +00:00
self.look_ahead(offset, |t| is_plain_ident(t))
&& self.look_ahead(offset + 1, |t| *t == token::COLON)
}
}
// This version of parse arg doesn't necessarily require
// identifier names.
pub fn parse_arg_general(&self, require_name: bool) -> arg {
2013-07-11 05:12:30 +00:00
let is_mutbl = self.eat_keyword(keywords::Mut);
let pat = if require_name || self.is_named_argument() {
self.parse_arg_mode();
2013-05-29 23:59:33 +00:00
let pat = self.parse_pat();
if is_mutbl && !ast_util::pat_is_ident(pat) {
self.obsolete(*self.span, ObsoleteMutWithMultipleBindings)
}
self.expect(&token::COLON);
pat
} else {
ast_util::ident_to_pat(self.get_id(),
*self.last_span,
special_idents::invalid)
};
let t = self.parse_ty(false);
ast::arg {
is_mutbl: is_mutbl,
ty: t,
pat: pat,
id: self.get_id(),
}
}
2013-04-04 21:30:11 +00:00
// parse a single function argument
pub fn parse_arg(&self) -> arg_or_capture_item {
either::Left(self.parse_arg_general(true))
2012-05-04 19:33:04 +00:00
}
2013-04-02 23:44:01 +00:00
// parse an argument in a lambda header e.g. |arg, arg|
pub fn parse_fn_block_arg(&self) -> arg_or_capture_item {
self.parse_arg_mode();
let is_mutbl = self.eat_keyword(keywords::Mut);
2013-05-29 23:59:33 +00:00
let pat = self.parse_pat();
let t = if self.eat(&token::COLON) {
2013-02-26 00:49:28 +00:00
self.parse_ty(false)
} else {
2013-07-06 04:57:11 +00:00
Ty {
2013-02-26 00:49:28 +00:00
id: self.get_id(),
node: ty_infer,
span: mk_sp(self.span.lo, self.span.hi),
}
};
either::Left(ast::arg {
is_mutbl: is_mutbl,
ty: t,
pat: pat,
id: self.get_id()
})
2012-05-04 19:33:04 +00:00
}
pub fn maybe_parse_fixed_vstore(&self) -> Option<@ast::expr> {
2013-02-24 17:54:41 +00:00
if self.eat(&token::BINOP(token::STAR)) {
2013-03-23 02:22:12 +00:00
self.obsolete(*self.last_span, ObsoleteFixedLengthVectorType);
Some(self.parse_expr())
} else if *self.token == token::COMMA &&
2013-07-02 19:47:32 +00:00
self.look_ahead(1, |t| *t == token::DOTDOT) {
self.bump();
self.bump();
Some(self.parse_expr())
} else {
2012-08-20 19:23:37 +00:00
None
}
}
2013-03-29 19:51:10 +00:00
// matches token_lit = LIT_INT | ...
pub fn lit_from_token(&self, tok: &token::Token) -> lit_ {
2013-02-25 04:51:56 +00:00
match *tok {
token::LIT_INT(i, it) => lit_int(i, it),
token::LIT_UINT(u, ut) => lit_uint(u, ut),
token::LIT_INT_UNSUFFIXED(i) => lit_int_unsuffixed(i),
token::LIT_FLOAT(s, ft) => lit_float(self.id_to_str(s), ft),
token::LIT_FLOAT_UNSUFFIXED(s) =>
lit_float_unsuffixed(self.id_to_str(s)),
token::LIT_STR(s) => lit_str(self.id_to_str(s)),
token::LPAREN => { self.expect(&token::RPAREN); lit_nil },
_ => { self.unexpected_last(tok); }
}
}
2013-03-29 19:51:10 +00:00
// matches lit = true | false | token_lit
pub fn parse_lit(&self) -> lit {
let lo = self.span.lo;
let lit = if self.eat_keyword(keywords::True) {
lit_bool(true)
} else if self.eat_keyword(keywords::False) {
lit_bool(false)
} else {
2013-07-02 19:47:32 +00:00
let token = self.bump_and_get();
let lit = self.lit_from_token(&token);
lit
};
2013-01-30 17:56:33 +00:00
codemap::spanned { node: lit, span: mk_sp(lo, self.last_span.hi) }
}
2011-07-27 12:19:39 +00:00
// matches '-' lit | lit
pub fn parse_literal_maybe_minus(&self) -> @expr {
let minus_lo = self.span.lo;
let minus_present = self.eat(&token::BINOP(token::MINUS));
let lo = self.span.lo;
let literal = @self.parse_lit();
let hi = self.span.hi;
let expr = self.mk_expr(lo, hi, expr_lit(literal));
if minus_present {
let minus_hi = self.span.hi;
self.mk_expr(minus_lo, minus_hi, self.mk_unary(neg, expr))
} else {
expr
}
}
2013-03-27 19:36:10 +00:00
// parse a path into a vector of idents, whether the path starts
// with ::, and a span.
pub fn parse_path(&self) -> (~[ast::ident],bool,span) {
2013-03-27 19:36:10 +00:00
let lo = self.span.lo;
let is_global = self.eat(&token::MOD_SEP);
let (ids,span{lo:_,hi,expn_info}) = self.parse_path_non_global();
(ids,is_global,span{lo:lo,hi:hi,expn_info:expn_info})
}
// parse a path beginning with an identifier into a vector of idents and a span
pub fn parse_path_non_global(&self) -> (~[ast::ident],span) {
let lo = self.span.lo;
let mut ids = ~[];
2013-03-27 19:36:10 +00:00
// must be at least one to begin:
ids.push(self.parse_ident());
loop {
2013-03-27 19:36:10 +00:00
match *self.token {
token::MOD_SEP => {
2013-07-02 19:47:32 +00:00
let is_ident = do self.look_ahead(1) |t| {
match *t {
token::IDENT(*) => true,
_ => false,
2013-03-27 19:36:10 +00:00
}
2013-07-02 19:47:32 +00:00
};
if is_ident {
self.bump();
ids.push(self.parse_ident());
} else {
break
2013-03-27 19:36:10 +00:00
}
}
_ => break
}
}
2013-03-27 19:36:10 +00:00
(ids, mk_sp(lo, self.last_span.hi))
}
// parse a path that doesn't have type parameters attached
2013-07-05 10:15:21 +00:00
pub fn parse_path_without_tps(&self) -> ast::Path {
2013-03-27 19:36:10 +00:00
maybe_whole!(self, nt_path);
let (ids,is_global,sp) = self.parse_path();
2013-07-05 10:15:21 +00:00
ast::Path { span: sp,
2013-03-27 19:36:10 +00:00
global: is_global,
2013-01-13 18:48:09 +00:00
idents: ids,
rp: None,
types: ~[] }
}
pub fn parse_bounded_path_with_tps(&self, colons: bool,
2013-07-05 10:15:21 +00:00
before_tps: Option<&fn()>) -> ast::Path {
2012-08-23 00:24:52 +00:00
debug!("parse_path_with_tps(colons=%b)", colons);
2012-08-23 00:24:52 +00:00
maybe_whole!(self, nt_path);
let lo = self.span.lo;
let path = self.parse_path_without_tps();
2013-02-24 17:54:41 +00:00
if colons && !self.eat(&token::MOD_SEP) {
2012-08-02 00:30:05 +00:00
return path;
}
// If the path might have bounds on it, they should be parsed before
// the parameters, e.g. module::TraitName:B1+B2<T>
before_tps.map_move(|callback| callback());
// Parse the (obsolete) trailing region parameter, if any, which will
// be written "foo/&x"
2013-02-26 19:35:17 +00:00
let rp_slash = {
if *self.token == token::BINOP(token::SLASH)
2013-07-02 19:47:32 +00:00
&& self.look_ahead(1, |t| *t == token::BINOP(token::AND))
{
self.bump(); self.bump();
self.obsolete(*self.last_span, ObsoleteLifetimeNotation);
match *self.token {
token::IDENT(sid, _) => {
let span = self.span;
self.bump();
2013-07-05 12:33:52 +00:00
Some(ast::Lifetime {
id: self.get_id(),
span: *span,
ident: sid
})
}
_ => {
self.fatal(fmt!("Expected a lifetime name"));
}
}
} else {
2012-08-20 19:23:37 +00:00
None
}
};
// Parse any lifetime or type parameters which may appear:
2013-02-26 19:35:17 +00:00
let (lifetimes, tps) = self.parse_generic_values();
let hi = self.span.lo;
2013-02-26 19:35:17 +00:00
let rp = match (&rp_slash, &lifetimes) {
(&Some(_), _) => rp_slash,
(&None, v) => {
if v.len() == 0 {
None
} else if v.len() == 1 {
2013-07-05 12:33:52 +00:00
Some(*v.get(0))
2013-02-26 19:35:17 +00:00
} else {
self.fatal(fmt!("Expected at most one \
lifetime name (for now)"));
}
}
};
2013-07-02 19:47:32 +00:00
ast::Path {
span: mk_sp(lo, hi),
rp: rp,
types: tps,
.. path.clone()
}
}
// parse a path optionally with type parameters. If 'colons'
// is true, then type parameters must be preceded by colons,
// as in a::t::<t1,t2>
2013-07-05 10:15:21 +00:00
pub fn parse_path_with_tps(&self, colons: bool) -> ast::Path {
self.parse_bounded_path_with_tps(colons, None)
}
// Like the above, but can also parse kind bounds in the case of a
// path to be used as a type that might be a trait.
2013-07-05 10:15:21 +00:00
pub fn parse_type_path(&self) -> (ast::Path, Option<OptVec<TyParamBound>>) {
let mut bounds = None;
let path = self.parse_bounded_path_with_tps(false, Some(|| {
// Note: this closure might not even get called in the case of a
// macro-generated path. But that's the macro parser's job.
bounds = self.parse_optional_ty_param_bounds();
}));
(path, bounds)
}
2013-03-29 17:35:23 +00:00
/// parses 0 or 1 lifetime
2013-07-05 12:33:52 +00:00
pub fn parse_opt_lifetime(&self) -> Option<ast::Lifetime> {
match *self.token {
token::LIFETIME(*) => {
2013-07-05 12:33:52 +00:00
Some(self.parse_lifetime())
}
// Also accept the (obsolete) syntax `foo/`
token::IDENT(*) => {
2013-07-02 19:47:32 +00:00
if self.look_ahead(1, |t| *t == token::BINOP(token::SLASH)) {
self.obsolete(*self.last_span, ObsoleteLifetimeNotation);
2013-07-05 12:33:52 +00:00
Some(self.parse_lifetime())
} else {
None
}
}
_ => {
None
}
}
}
2013-03-29 17:35:23 +00:00
/// Parses a single lifetime
// matches lifetime = ( LIFETIME ) | ( IDENT / )
pub fn parse_lifetime(&self) -> ast::Lifetime {
match *self.token {
token::LIFETIME(i) => {
let span = self.span;
self.bump();
return ast::Lifetime {
id: self.get_id(),
span: *span,
ident: i
};
}
// Also accept the (obsolete) syntax `foo/`
token::IDENT(i, _) => {
let span = self.span;
self.bump();
self.expect(&token::BINOP(token::SLASH));
self.obsolete(*self.last_span, ObsoleteLifetimeNotation);
return ast::Lifetime {
id: self.get_id(),
span: *span,
ident: i
};
}
_ => {
self.fatal(fmt!("Expected a lifetime name"));
}
}
}
// matches lifetimes = ( lifetime ) | ( lifetime , lifetimes )
// actually, it matches the empty one too, but putting that in there
// messes up the grammar....
pub fn parse_lifetimes(&self) -> OptVec<ast::Lifetime> {
/*!
*
* Parses zero or more comma separated lifetimes.
* Expects each lifetime to be followed by either
* a comma or `>`. Used when parsing type parameter
* lists, where we expect something like `<'a, 'b, T>`.
*/
let mut res = opt_vec::Empty;
loop {
match *self.token {
token::LIFETIME(_) => {
res.push(self.parse_lifetime());
}
_ => {
return res;
}
}
match *self.token {
token::COMMA => { self.bump();}
token::GT => { return res; }
token::BINOP(token::SHR) => { return res; }
_ => {
self.fatal(fmt!("expected `,` or `>` after lifetime name, got: %?",
*self.token));
}
}
}
}
pub fn token_is_mutability(&self, tok: &token::Token) -> bool {
token::is_keyword(keywords::Mut, tok) ||
token::is_keyword(keywords::Const, tok)
}
2013-03-08 18:19:19 +00:00
// parse mutability declaration (mut/const/imm)
pub fn parse_mutability(&self) -> mutability {
if self.eat_keyword(keywords::Mut) {
m_mutbl
} else if self.eat_keyword(keywords::Const) {
m_const
} else {
m_imm
}
}
// parse ident COLON expr
pub fn parse_field(&self) -> Field {
let lo = self.span.lo;
2012-05-24 19:38:45 +00:00
let i = self.parse_ident();
self.expect(&token::COLON);
let e = self.parse_expr();
ast::Field {
2013-05-24 02:47:38 +00:00
ident: i,
expr: e,
span: mk_sp(lo, e.span.hi),
}
}
pub fn mk_expr(&self, lo: BytePos, hi: BytePos, node: expr_) -> @expr {
2013-01-15 21:51:43 +00:00
@expr {
id: self.get_id(),
node: node,
span: mk_sp(lo, hi),
}
}
pub fn mk_unary(&self, unop: ast::unop, expr: @expr) -> ast::expr_ {
expr_unary(self.get_id(), unop, expr)
}
pub fn mk_binary(&self, binop: ast::binop, lhs: @expr, rhs: @expr) -> ast::expr_ {
expr_binary(self.get_id(), binop, lhs, rhs)
}
pub fn mk_call(&self, f: @expr, args: ~[@expr], sugar: CallSugar) -> ast::expr_ {
expr_call(f, args, sugar)
}
pub fn mk_method_call(&self,
rcvr: @expr,
ident: ident,
2013-07-06 04:57:11 +00:00
tps: ~[Ty],
args: ~[@expr],
sugar: CallSugar) -> ast::expr_ {
expr_method_call(self.get_id(), rcvr, ident, tps, args, sugar)
}
pub fn mk_index(&self, expr: @expr, idx: @expr) -> ast::expr_ {
expr_index(self.get_id(), expr, idx)
}
2013-07-06 04:57:11 +00:00
pub fn mk_field(&self, expr: @expr, ident: ident, tys: ~[Ty]) -> ast::expr_ {
expr_field(expr, ident, tys)
}
pub fn mk_assign_op(&self, binop: ast::binop, lhs: @expr, rhs: @expr) -> ast::expr_ {
expr_assign_op(self.get_id(), binop, lhs, rhs)
}
pub fn mk_mac_expr(&self, lo: BytePos, hi: BytePos, m: mac_) -> @expr {
2013-01-15 21:51:43 +00:00
@expr {
id: self.get_id(),
2013-01-30 17:56:33 +00:00
node: expr_mac(codemap::spanned {node: m, span: mk_sp(lo, hi)}),
2013-01-15 21:51:43 +00:00
span: mk_sp(lo, hi),
}
}
2010-12-14 23:32:13 +00:00
pub fn mk_lit_u32(&self, i: u32) -> @expr {
let span = self.span;
let lv_lit = @codemap::spanned {
node: lit_uint(i as u64, ty_u32),
span: *span
};
2013-01-15 21:51:43 +00:00
@expr {
id: self.get_id(),
node: expr_lit(lv_lit),
span: *span,
2013-01-15 21:51:43 +00:00
}
}
2013-03-29 17:35:23 +00:00
// at the bottom (top?) of the precedence hierarchy,
// parse things like parenthesized exprs,
// macros, return, etc.
pub fn parse_bottom_expr(&self) -> @expr {
2012-08-23 00:24:52 +00:00
maybe_whole_expr!(self);
2013-03-02 21:02:27 +00:00
let lo = self.span.lo;
let mut hi = self.span.hi;
2013-04-12 05:10:31 +00:00
let ex: expr_;
if *self.token == token::LPAREN {
self.bump();
// (e) is parenthesized e
// (e,) is a tuple with only one field, e
let mut trailing_comma = false;
if *self.token == token::RPAREN {
hi = self.span.hi;
self.bump();
let lit = @spanned(lo, hi, lit_nil);
return self.mk_expr(lo, hi, expr_lit(lit));
}
let mut es = ~[self.parse_expr()];
while *self.token == token::COMMA {
self.bump();
if *self.token != token::RPAREN {
es.push(self.parse_expr());
}
else {
trailing_comma = true;
}
}
hi = self.span.hi;
self.expect(&token::RPAREN);
return if es.len() == 1 && !trailing_comma {
self.mk_expr(lo, self.span.hi, expr_paren(es[0]))
}
else {
self.mk_expr(lo, hi, expr_tup(es))
}
} else if *self.token == token::LBRACE {
2013-03-02 03:57:05 +00:00
self.bump();
let blk = self.parse_block_tail(lo, DefaultBlock);
2013-03-02 03:57:05 +00:00
return self.mk_expr(blk.span.lo, blk.span.hi,
expr_block(blk));
} else if token::is_bar(&*self.token) {
return self.parse_lambda_expr();
} else if self.eat_keyword(keywords::Self) {
ex = expr_self;
hi = self.span.hi;
} else if self.eat_keyword(keywords::If) {
return self.parse_if_expr();
} else if self.eat_keyword(keywords::For) {
return self.parse_for_expr();
} else if self.eat_keyword(keywords::Do) {
return self.parse_sugary_call_expr(lo, ~"do", DoSugar,
expr_do_body);
} else if self.eat_keyword(keywords::While) {
return self.parse_while_expr();
} else if self.token_is_lifetime(&*self.token) {
let lifetime = self.get_lifetime(&*self.token);
self.bump();
self.expect(&token::COLON);
self.expect_keyword(keywords::Loop);
return self.parse_loop_expr(Some(lifetime));
} else if self.eat_keyword(keywords::Loop) {
return self.parse_loop_expr(None);
} else if self.eat_keyword(keywords::Match) {
return self.parse_match_expr();
} else if self.eat_keyword(keywords::Unsafe) {
return self.parse_block_expr(lo, UnsafeBlock);
} else if *self.token == token::LBRACKET {
self.bump();
let mutbl = self.parse_mutability();
2013-03-23 01:24:37 +00:00
if mutbl == m_mutbl || mutbl == m_const {
self.obsolete(*self.last_span, ObsoleteMutVector);
}
if *self.token == token::RBRACKET {
// Empty vector.
self.bump();
ex = expr_vec(~[], mutbl);
} else {
// Nonempty vector.
let first_expr = self.parse_expr();
if *self.token == token::COMMA &&
2013-07-02 19:47:32 +00:00
self.look_ahead(1, |t| *t == token::DOTDOT) {
// Repeating vector syntax: [ 0, ..512 ]
self.bump();
self.bump();
let count = self.parse_expr();
self.expect(&token::RBRACKET);
ex = expr_repeat(first_expr, count, mutbl);
} else if *self.token == token::COMMA {
// Vector with two or more elements.
self.bump();
2013-02-24 23:41:54 +00:00
let remaining_exprs = self.parse_seq_to_end(
&token::RBRACKET,
2013-02-24 23:41:54 +00:00
seq_sep_trailing_allowed(token::COMMA),
|p| p.parse_expr()
);
ex = expr_vec(~[first_expr] + remaining_exprs, mutbl);
} else {
// Vector with one element.
self.expect(&token::RBRACKET);
ex = expr_vec(~[first_expr], mutbl);
}
}
2013-05-21 10:08:34 +00:00
hi = self.last_span.hi;
} else if self.eat_keyword(keywords::__Log) {
2013-04-02 23:44:01 +00:00
// LOG expression
self.expect(&token::LPAREN);
let lvl = self.parse_expr();
self.expect(&token::COMMA);
let e = self.parse_expr();
ex = expr_log(lvl, e);
hi = self.span.hi;
self.expect(&token::RPAREN);
} else if self.eat_keyword(keywords::Return) {
2013-04-02 23:44:01 +00:00
// RETURN expression
if can_begin_expr(&*self.token) {
let e = self.parse_expr();
hi = e.span.hi;
2012-08-20 19:23:37 +00:00
ex = expr_ret(Some(e));
} else { ex = expr_ret(None); }
} else if self.eat_keyword(keywords::Break) {
2013-04-02 23:44:01 +00:00
// BREAK expression
if self.token_is_lifetime(&*self.token) {
let lifetime = self.get_lifetime(&*self.token);
self.bump();
ex = expr_break(Some(lifetime));
} else {
2012-08-20 19:23:37 +00:00
ex = expr_break(None);
}
hi = self.span.hi;
} else if *self.token == token::MOD_SEP ||
is_ident(&*self.token) && !self.is_keyword(keywords::True) &&
!self.is_keyword(keywords::False) {
let pth = self.parse_path_with_tps(true);
2013-03-02 21:02:27 +00:00
// `!`, as an operator, is prefix, so we know this isn't that
if *self.token == token::NOT {
2013-04-02 23:44:01 +00:00
// MACRO INVOCATION expression
self.bump();
match *self.token {
2013-02-25 04:51:56 +00:00
token::LPAREN | token::LBRACE => {}
_ => self.fatal("expected open delimiter")
};
let ket = token::flip_delimiter(&*self.token);
2013-07-02 19:47:32 +00:00
self.bump();
let tts = self.parse_seq_to_end(&ket,
seq_sep_none(),
|p| p.parse_token_tree());
let hi = self.span.hi;
return self.mk_mac_expr(lo, hi, mac_invoc_tt(pth, tts));
} else if *self.token == token::LBRACE {
// This might be a struct literal.
if self.looking_at_record_literal() {
// It's a struct literal.
self.bump();
let mut fields = ~[];
let mut base = None;
2013-03-02 03:57:05 +00:00
fields.push(self.parse_field());
while *self.token != token::RBRACE {
if self.try_parse_obsolete_with() {
break;
}
self.expect(&token::COMMA);
2013-02-24 17:54:41 +00:00
if self.eat(&token::DOTDOT) {
base = Some(self.parse_expr());
break;
}
if *self.token == token::RBRACE {
// Accept an optional trailing comma.
break;
}
fields.push(self.parse_field());
}
hi = pth.span.hi;
self.expect(&token::RBRACE);
ex = expr_struct(pth, fields, base);
return self.mk_expr(lo, hi, ex);
}
}
hi = pth.span.hi;
ex = expr_path(pth);
} else {
2013-04-02 23:44:01 +00:00
// other literal expression
let lit = self.parse_lit();
hi = lit.span.hi;
ex = expr_lit(@lit);
}
return self.mk_expr(lo, hi, ex);
}
2013-04-02 23:44:01 +00:00
// parse a block or unsafe block
pub fn parse_block_expr(&self, lo: BytePos, blk_mode: BlockCheckMode)
-> @expr {
self.expect(&token::LBRACE);
let blk = self.parse_block_tail(lo, blk_mode);
2012-08-02 00:30:05 +00:00
return self.mk_expr(blk.span.lo, blk.span.hi, expr_block(blk));
}
2013-04-02 23:44:01 +00:00
// parse a.b or a(13) or a[4] or just a
pub fn parse_dot_or_call_expr(&self) -> @expr {
let b = self.parse_bottom_expr();
self.parse_dot_or_call_expr_with(b)
}
pub fn parse_dot_or_call_expr_with(&self, e0: @expr) -> @expr {
let mut e = e0;
let lo = e.span.lo;
2012-05-24 20:35:57 +00:00
let mut hi;
loop {
// expr.f
2013-02-24 17:54:41 +00:00
if self.eat(&token::DOT) {
match *self.token {
2012-08-04 02:59:04 +00:00
token::IDENT(i, _) => {
hi = self.span.hi;
self.bump();
2013-02-26 19:35:17 +00:00
let (_, tys) = if self.eat(&token::MOD_SEP) {
self.expect(&token::LT);
self.parse_generic_values_after_lt()
} else {
2013-02-26 19:35:17 +00:00
(opt_vec::Empty, ~[])
};
// expr.f() method call
match *self.token {
token::LPAREN => {
let es = self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
seq_sep_trailing_disallowed(token::COMMA),
2013-02-24 23:41:54 +00:00
|p| p.parse_expr()
);
hi = self.span.hi;
let nd = self.mk_method_call(e, i, tys, es, NoSugar);
e = self.mk_expr(lo, hi, nd);
}
_ => {
e = self.mk_expr(lo, hi, self.mk_field(e, i, tys));
}
}
}
2012-08-04 02:59:04 +00:00
_ => self.unexpected()
}
loop;
}
if self.expr_is_complete(e) { break; }
match *self.token {
// expr(...)
token::LPAREN => {
2012-06-20 02:34:01 +00:00
let es = self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
seq_sep_trailing_disallowed(token::COMMA),
2013-02-24 23:41:54 +00:00
|p| p.parse_expr()
);
hi = self.span.hi;
let nd = self.mk_call(e, es, NoSugar);
e = self.mk_expr(lo, hi, nd);
}
2012-05-31 01:14:40 +00:00
// expr[...]
2012-08-04 02:59:04 +00:00
token::LBRACKET => {
2012-05-31 01:14:40 +00:00
self.bump();
let ix = self.parse_expr();
hi = ix.span.hi;
self.expect(&token::RBRACKET);
e = self.mk_expr(lo, hi, self.mk_index(e, ix));
2012-05-31 01:14:40 +00:00
}
2012-08-04 02:59:04 +00:00
_ => return e
2012-05-31 01:14:40 +00:00
}
2010-09-28 17:30:34 +00:00
}
2012-08-02 00:30:05 +00:00
return e;
2010-09-28 17:30:34 +00:00
}
2013-02-04 21:15:17 +00:00
// parse an optional separator followed by a kleene-style
// repetition token (+ or *).
pub fn parse_sep_and_zerok(&self) -> (Option<token::Token>, bool) {
2013-07-18 03:04:37 +00:00
fn parse_zerok(parser: &Parser) -> Option<bool> {
match *parser.token {
token::BINOP(token::STAR) | token::BINOP(token::PLUS) => {
let zerok = *parser.token == token::BINOP(token::STAR);
parser.bump();
Some(zerok)
},
_ => None
}
2013-07-18 03:04:37 +00:00
};
match parse_zerok(self) {
Some(zerok) => return (None, zerok),
None => {}
}
let separator = self.bump_and_get();
match parse_zerok(self) {
Some(zerok) => (Some(separator), zerok),
None => self.fatal("expected `*` or `+`")
}
}
2013-02-04 21:15:17 +00:00
// parse a single token tree from the input.
pub fn parse_token_tree(&self) -> token_tree {
2012-08-23 00:24:52 +00:00
maybe_whole!(deref self, nt_tt);
2012-08-01 21:34:35 +00:00
// this is the fall-through for the 'match' below.
// invariants: the current token is not a left-delimiter,
// not an EOF, and not the desired right-delimiter (if
// it were, parse_seq_to_before_end would have prevented
// reaching this point.
fn parse_non_delim_tt_tok(p: &Parser) -> token_tree {
maybe_whole!(deref p, nt_tt);
match *p.token {
2012-05-21 17:45:56 +00:00
token::RPAREN | token::RBRACE | token::RBRACKET
2013-02-04 21:15:17 +00:00
=> {
2013-02-24 23:41:54 +00:00
p.fatal(
fmt!(
"incorrect close delimiter: `%s`",
p.this_token_to_str()
2013-02-24 23:41:54 +00:00
)
);
2012-05-21 17:45:56 +00:00
}
/* we ought to allow different depths of unquotation */
token::DOLLAR if *p.quote_depth > 0u => {
p.bump();
let sp = *p.span;
if *p.token == token::LPAREN {
2013-02-24 23:41:54 +00:00
let seq = p.parse_seq(
&token::LPAREN,
&token::RPAREN,
2013-02-24 23:41:54 +00:00
seq_sep_none(),
|p| p.parse_token_tree()
);
let (s, z) = p.parse_sep_and_zerok();
let seq = match seq {
spanned { node, _ } => node,
};
2013-02-26 14:35:36 +00:00
tt_seq(
mk_sp(sp.lo, p.span.hi),
@mut seq,
2013-02-26 14:35:36 +00:00
s,
z
)
} else {
2013-02-04 21:15:17 +00:00
tt_nonterminal(sp, p.parse_ident())
}
}
2013-02-04 21:15:17 +00:00
_ => {
parse_any_tt_tok(p)
}
2012-05-21 17:45:56 +00:00
}
2013-02-04 21:15:17 +00:00
}
// turn the next token into a tt_tok:
fn parse_any_tt_tok(p: &Parser) -> token_tree{
2013-07-02 19:47:32 +00:00
tt_tok(*p.span, p.bump_and_get())
2012-05-21 17:45:56 +00:00
}
match *self.token {
2013-02-24 23:41:54 +00:00
token::EOF => {
self.fatal("file ended with unbalanced delimiters");
2013-02-24 23:41:54 +00:00
}
token::LPAREN | token::LBRACE | token::LBRACKET => {
let close_delim = token::flip_delimiter(&*self.token);
// Parse the open delimiter.
let mut result = ~[parse_any_tt_tok(self)];
let trees =
self.parse_seq_to_before_end(&close_delim,
seq_sep_none(),
|p| p.parse_token_tree());
result.push_all_move(trees);
// Parse the close delimiter.
result.push(parse_any_tt_tok(self));
tt_delim(@mut result)
2013-02-24 23:41:54 +00:00
}
2013-03-02 21:02:27 +00:00
_ => parse_non_delim_tt_tok(self)
2013-02-04 21:15:17 +00:00
}
2012-05-21 17:45:56 +00:00
}
// parse a stream of tokens into a list of token_trees,
// up to EOF.
pub fn parse_all_token_trees(&self) -> ~[token_tree] {
2013-02-14 13:14:59 +00:00
let mut tts = ~[];
while *self.token != token::EOF {
tts.push(self.parse_token_tree());
}
2013-02-14 13:14:59 +00:00
tts
}
pub fn parse_matchers(&self) -> ~[matcher] {
2012-08-01 21:34:35 +00:00
// unification of matchers and token_trees would vastly improve
// the interpolation of matchers
2012-08-23 00:24:52 +00:00
maybe_whole!(self, nt_matchers);
2012-07-06 21:48:01 +00:00
let name_idx = @mut 0u;
2013-02-24 23:41:54 +00:00
match *self.token {
token::LBRACE | token::LPAREN | token::LBRACKET => {
2013-07-02 19:47:32 +00:00
let other_delimiter = token::flip_delimiter(self.token);
self.bump();
self.parse_matcher_subseq_upto(name_idx, &other_delimiter)
2013-02-24 23:41:54 +00:00
}
_ => self.fatal("expected open delimiter")
}
}
// This goofy function is necessary to correctly match parens in matchers.
// Otherwise, `$( ( )` would be a valid matcher, and `$( () )` would be
// invalid. It's similar to common::parse_seq.
2013-07-02 19:47:32 +00:00
pub fn parse_matcher_subseq_upto(&self,
name_idx: @mut uint,
ket: &token::Token)
-> ~[matcher] {
let mut ret_val = ~[];
let mut lparens = 0u;
2013-07-02 19:47:32 +00:00
while *self.token != *ket || lparens > 0u {
if *self.token == token::LPAREN { lparens += 1u; }
if *self.token == token::RPAREN { lparens -= 1u; }
ret_val.push(self.parse_matcher(name_idx));
}
self.bump();
2012-08-02 00:30:05 +00:00
return ret_val;
2012-07-06 21:48:01 +00:00
}
pub fn parse_matcher(&self, name_idx: @mut uint) -> matcher {
2012-06-12 17:59:50 +00:00
let lo = self.span.lo;
let m = if *self.token == token::DOLLAR {
2012-06-12 17:59:50 +00:00
self.bump();
if *self.token == token::LPAREN {
let name_idx_lo = *name_idx;
2013-07-02 19:47:32 +00:00
self.bump();
let ms = self.parse_matcher_subseq_upto(name_idx,
&token::RPAREN);
if ms.len() == 0u {
self.fatal("repetition body must be nonempty");
}
let (sep, zerok) = self.parse_sep_and_zerok();
match_seq(ms, sep, zerok, name_idx_lo, *name_idx)
} else {
let bound_to = self.parse_ident();
self.expect(&token::COLON);
let nt_name = self.parse_ident();
let m = match_nonterminal(bound_to, nt_name, *name_idx);
*name_idx += 1u;
m
2012-06-12 17:59:50 +00:00
}
} else {
2013-07-02 19:47:32 +00:00
match_tok(self.bump_and_get())
2012-06-12 17:59:50 +00:00
};
2012-08-02 00:30:05 +00:00
return spanned(lo, self.span.hi, m);
2012-06-12 17:59:50 +00:00
}
2013-03-29 17:35:23 +00:00
// parse a prefix-operator expr
pub fn parse_prefix_expr(&self) -> @expr {
let lo = self.span.lo;
2013-04-12 05:10:31 +00:00
let hi;
2013-04-12 05:10:31 +00:00
let ex;
match *self.token {
2012-08-04 02:59:04 +00:00
token::NOT => {
self.bump();
let e = self.parse_prefix_expr();
hi = e.span.hi;
ex = self.mk_unary(not, e);
}
2012-08-04 02:59:04 +00:00
token::BINOP(b) => {
2012-08-06 19:34:08 +00:00
match b {
2012-08-04 02:59:04 +00:00
token::MINUS => {
self.bump();
let e = self.parse_prefix_expr();
hi = e.span.hi;
ex = self.mk_unary(neg, e);
}
2012-08-04 02:59:04 +00:00
token::STAR => {
self.bump();
let e = self.parse_prefix_expr();
hi = e.span.hi;
ex = self.mk_unary(deref, e);
}
2012-08-04 02:59:04 +00:00
token::AND => {
self.bump();
let _lt = self.parse_opt_lifetime();
let m = self.parse_mutability();
let e = self.parse_prefix_expr();
hi = e.span.hi;
// HACK: turn &[...] into a &-evec
2012-08-06 19:34:08 +00:00
ex = match e.node {
2013-01-30 17:56:33 +00:00
expr_vec(*) | expr_lit(@codemap::spanned {
node: lit_str(_), span: _
})
2012-08-04 02:59:04 +00:00
if m == m_imm => {
expr_vstore(e, expr_vstore_slice)
}
expr_vec(*) if m == m_mutbl => {
expr_vstore(e, expr_vstore_mut_slice)
}
2012-08-04 02:59:04 +00:00
_ => expr_addr_of(m, e)
};
}
2012-08-04 02:59:04 +00:00
_ => return self.parse_dot_or_call_expr()
}
2011-07-27 12:19:39 +00:00
}
2012-08-04 02:59:04 +00:00
token::AT => {
self.bump();
let m = self.parse_mutability();
if m == m_const {
self.obsolete(*self.last_span, ObsoleteConstManagedPointer);
}
let e = self.parse_prefix_expr();
hi = e.span.hi;
// HACK: turn @[...] into a @-evec
2012-08-06 19:34:08 +00:00
ex = match e.node {
expr_vec(*) | expr_repeat(*) if m == m_mutbl =>
expr_vstore(e, expr_vstore_mut_box),
expr_vec(*) |
expr_lit(@codemap::spanned { node: lit_str(_), span: _}) |
expr_repeat(*) if m == m_imm => expr_vstore(e, expr_vstore_box),
_ => self.mk_unary(box(m), e)
};
2011-07-27 12:19:39 +00:00
}
2012-08-04 02:59:04 +00:00
token::TILDE => {
self.bump();
let m = self.parse_mutability();
if m != m_imm {
self.obsolete(*self.last_span, ObsoleteMutOwnedPointer);
}
let e = self.parse_prefix_expr();
hi = e.span.hi;
// HACK: turn ~[...] into a ~-evec
2012-08-06 19:34:08 +00:00
ex = match e.node {
expr_vec(*) |
expr_lit(@codemap::spanned { node: lit_str(_), span: _}) |
expr_repeat(*) => expr_vstore(e, expr_vstore_uniq),
_ => self.mk_unary(uniq, e)
};
}
2012-08-04 02:59:04 +00:00
_ => return self.parse_dot_or_call_expr()
}
return self.mk_expr(lo, hi, ex);
}
2013-01-31 18:32:57 +00:00
// parse an expression of binops
pub fn parse_binops(&self) -> @expr {
2013-01-31 18:32:57 +00:00
self.parse_more_binops(self.parse_prefix_expr(), 0)
}
2013-01-31 18:32:57 +00:00
// parse an expression of binops of at least min_prec precedence
pub fn parse_more_binops(&self, lhs: @expr, min_prec: uint) -> @expr {
if self.expr_is_complete(lhs) { return lhs; }
2013-07-18 03:04:37 +00:00
// Prevent dynamic borrow errors later on by limiting the
// scope of the borrows.
{
let token: &token::Token = self.token;
let restriction: &restriction = self.restriction;
match (token, restriction) {
(&token::BINOP(token::OR), &RESTRICT_NO_BAR_OP) => return lhs,
(&token::BINOP(token::OR),
&RESTRICT_NO_BAR_OR_DOUBLEBAR_OP) => return lhs,
(&token::OROR, &RESTRICT_NO_BAR_OR_DOUBLEBAR_OP) => return lhs,
_ => { }
}
}
let cur_opt = token_to_binop(self.token);
match cur_opt {
Some(cur_op) => {
let cur_prec = operator_prec(cur_op);
if cur_prec > min_prec {
self.bump();
let expr = self.parse_prefix_expr();
let rhs = self.parse_more_binops(expr, cur_prec);
let bin = self.mk_expr(lhs.span.lo, rhs.span.hi,
self.mk_binary(cur_op, lhs, rhs));
self.parse_more_binops(bin, min_prec)
} else {
lhs
2013-01-31 18:32:57 +00:00
}
2013-07-18 03:04:37 +00:00
}
None => {
if as_prec > min_prec && self.eat_keyword(keywords::As) {
let rhs = self.parse_ty(true);
let _as = self.mk_expr(lhs.span.lo,
rhs.span.hi,
expr_cast(lhs, rhs));
self.parse_more_binops(_as, min_prec)
} else {
lhs
2013-01-31 18:32:57 +00:00
}
}
}
}
2010-09-28 17:30:34 +00:00
2013-01-31 18:32:57 +00:00
// parse an assignment expression....
// actually, this seems to be the main entry point for
// parsing an arbitrary expression.
pub fn parse_assign_expr(&self) -> @expr {
let lo = self.span.lo;
let lhs = self.parse_binops();
match *self.token {
2013-03-28 23:31:12 +00:00
token::EQ => {
self.bump();
let rhs = self.parse_expr();
self.mk_expr(lo, rhs.span.hi, expr_assign(lhs, rhs))
}
2012-08-04 02:59:04 +00:00
token::BINOPEQ(op) => {
2013-01-31 18:32:57 +00:00
self.bump();
let rhs = self.parse_expr();
2013-07-18 03:04:37 +00:00
let aop = match op {
token::PLUS => add,
token::MINUS => subtract,
token::STAR => mul,
token::SLASH => div,
token::PERCENT => rem,
token::CARET => bitxor,
token::AND => bitand,
token::OR => bitor,
token::SHL => shl,
token::SHR => shr
};
2013-01-31 18:32:57 +00:00
self.mk_expr(lo, rhs.span.hi,
self.mk_assign_op(aop, lhs, rhs))
}
2012-08-04 02:59:04 +00:00
token::LARROW => {
self.obsolete(*self.span, ObsoleteBinaryMove);
// Bogus value (but it's an error)
self.bump(); // <-
self.bump(); // rhs
self.bump(); // ;
2013-01-31 18:32:57 +00:00
self.mk_expr(lo, self.span.hi,
expr_break(None))
}
2012-08-04 02:59:04 +00:00
token::DARROW => {
self.obsolete(*self.span, ObsoleteSwap);
self.bump();
// Ignore what we get, this is an error anyway
self.parse_expr();
self.mk_expr(lo, self.span.hi, expr_break(None))
2013-01-31 18:32:57 +00:00
}
_ => {
lhs
}
}
}
2013-04-02 23:44:01 +00:00
// parse an 'if' expression ('if' token already eaten)
pub fn parse_if_expr(&self) -> @expr {
let lo = self.last_span.lo;
let cond = self.parse_expr();
let thn = self.parse_block();
2012-08-20 19:23:37 +00:00
let mut els: Option<@expr> = None;
let mut hi = thn.span.hi;
if self.eat_keyword(keywords::Else) {
let elexpr = self.parse_else_expr();
2012-08-20 19:23:37 +00:00
els = Some(elexpr);
hi = elexpr.span.hi;
}
self.mk_expr(lo, hi, expr_if(cond, thn, els))
}
2013-04-02 23:44:01 +00:00
// `|args| { ... }` or `{ ...}` like in `do` expressions
pub fn parse_lambda_block_expr(&self) -> @expr {
self.parse_lambda_expr_(
|| {
match *self.token {
2012-08-04 02:59:04 +00:00
token::BINOP(token::OR) | token::OROR => {
self.parse_fn_block_decl()
}
2012-08-04 02:59:04 +00:00
_ => {
// No argument list - `do foo {`
ast::fn_decl {
inputs: ~[],
2013-07-06 04:57:11 +00:00
output: Ty {
id: self.get_id(),
node: ty_infer,
span: *self.span
},
cf: return_val
}
}
}
},
|| {
let blk = self.parse_block();
self.mk_expr(blk.span.lo, blk.span.hi, expr_block(blk))
})
}
// `|args| expr`
pub fn parse_lambda_expr(&self) -> @expr {
self.parse_lambda_expr_(|| self.parse_fn_block_decl(),
|| self.parse_expr())
}
2013-04-02 23:44:01 +00:00
// parse something of the form |args| expr
// this is used both in parsing a lambda expr
// and in parsing a block expr as e.g. in for...
pub fn parse_lambda_expr_(&self,
parse_decl: &fn() -> fn_decl,
parse_body: &fn() -> @expr)
-> @expr {
let lo = self.last_span.lo;
let decl = parse_decl();
let body = parse_body();
let fakeblock = ast::Block {
2013-01-15 03:35:08 +00:00
view_items: ~[],
stmts: ~[],
expr: Some(body),
id: self.get_id(),
rules: DefaultBlock,
span: body.span,
2013-01-15 03:35:08 +00:00
};
2012-08-02 00:30:05 +00:00
return self.mk_expr(lo, body.span.hi,
expr_fn_block(decl, fakeblock));
}
pub fn parse_else_expr(&self) -> @expr {
if self.eat_keyword(keywords::If) {
2012-08-02 00:30:05 +00:00
return self.parse_if_expr();
} else {
let blk = self.parse_block();
2012-08-02 00:30:05 +00:00
return self.mk_expr(blk.span.lo, blk.span.hi, expr_block(blk));
}
}
// parse a 'for' .. 'in' expression ('for' token already eaten)
pub fn parse_for_expr(&self) -> @expr {
// Parse: `for <src_pat> in <src_expr> <src_loop_block>`
let lo = self.last_span.lo;
let pat = self.parse_pat();
self.expect_keyword(keywords::In);
let expr = self.parse_expr();
let loop_block = self.parse_block();
let hi = self.span.hi;
self.mk_expr(lo, hi, expr_for_loop(pat, expr, loop_block))
}
2013-04-02 23:44:01 +00:00
// parse a 'for' or 'do'.
// the 'for' and 'do' expressions parse as calls, but look like
// function calls followed by a closure expression.
pub fn parse_sugary_call_expr(&self, lo: BytePos,
keyword: ~str,
sugar: CallSugar,
ctor: &fn(v: @expr) -> expr_)
-> @expr {
// Parse the callee `foo` in
// for foo || {
// for foo.bar || {
// etc, or the portion of the call expression before the lambda in
// for foo() || {
// or
// for foo.bar(a) || {
// Turn on the restriction to stop at | or || so we can parse
// them as the lambda arguments
let e = self.parse_expr_res(RESTRICT_NO_BAR_OR_DOUBLEBAR_OP);
2013-03-20 01:24:01 +00:00
match e.node {
2013-05-29 23:59:33 +00:00
expr_call(f, ref args, NoSugar) => {
let block = self.parse_lambda_block_expr();
let last_arg = self.mk_expr(block.span.lo, block.span.hi,
ctor(block));
2013-07-02 19:47:32 +00:00
let args = vec::append((*args).clone(), [last_arg]);
self.mk_expr(lo, block.span.hi, expr_call(f, args, sugar))
}
expr_method_call(_, f, i, ref tps, ref args, NoSugar) => {
let block = self.parse_lambda_block_expr();
let last_arg = self.mk_expr(block.span.lo, block.span.hi,
ctor(block));
2013-07-02 19:47:32 +00:00
let args = vec::append((*args).clone(), [last_arg]);
self.mk_expr(lo, block.span.hi,
2013-07-02 19:47:32 +00:00
self.mk_method_call(f,
i,
(*tps).clone(),
args,
sugar))
}
2013-05-29 23:59:33 +00:00
expr_field(f, i, ref tps) => {
let block = self.parse_lambda_block_expr();
let last_arg = self.mk_expr(block.span.lo, block.span.hi,
ctor(block));
self.mk_expr(lo, block.span.hi,
2013-07-02 19:47:32 +00:00
self.mk_method_call(f,
i,
(*tps).clone(),
~[last_arg],
sugar))
}
expr_path(*) | expr_call(*) | expr_method_call(*) |
expr_paren(*) => {
let block = self.parse_lambda_block_expr();
let last_arg = self.mk_expr(block.span.lo, block.span.hi,
ctor(block));
self.mk_expr(
lo,
last_arg.span.hi,
self.mk_call(e, ~[last_arg], sugar))
}
_ => {
// There may be other types of expressions that can
// represent the callee in `for` and `do` expressions
// but they aren't represented by tests
debug!("sugary call on %?", e.node);
self.span_fatal(
e.span,
fmt!("`%s` must be followed by a block call", keyword));
}
2012-06-19 00:42:09 +00:00
}
}
pub fn parse_while_expr(&self) -> @expr {
let lo = self.last_span.lo;
let cond = self.parse_expr();
let body = self.parse_block();
2013-04-12 05:10:31 +00:00
let hi = body.span.hi;
2012-08-02 00:30:05 +00:00
return self.mk_expr(lo, hi, expr_while(cond, body));
}
pub fn parse_loop_expr(&self, opt_ident: Option<ast::ident>) -> @expr {
2012-09-04 20:36:54 +00:00
// loop headers look like 'loop {' or 'loop unsafe {'
let is_loop_header =
*self.token == token::LBRACE
|| (is_ident(&*self.token)
2013-07-02 19:47:32 +00:00
&& self.look_ahead(1, |t| *t == token::LBRACE));
2012-09-04 20:36:54 +00:00
if is_loop_header {
2012-09-04 20:36:54 +00:00
// This is a loop body
let lo = self.last_span.lo;
let body = self.parse_block();
2013-04-12 05:10:31 +00:00
let hi = body.span.hi;
2012-09-04 20:36:54 +00:00
return self.mk_expr(lo, hi, expr_loop(body, opt_ident));
} else {
2012-09-04 20:36:54 +00:00
// This is a 'continue' expression
if opt_ident.is_some() {
self.span_err(*self.last_span,
2013-05-02 16:28:53 +00:00
"a label may not be used with a `loop` expression");
}
2012-09-04 20:36:54 +00:00
let lo = self.span.lo;
let ex = if self.token_is_lifetime(&*self.token) {
let lifetime = self.get_lifetime(&*self.token);
self.bump();
expr_again(Some(lifetime))
2012-09-04 20:36:54 +00:00
} else {
expr_again(None)
};
let hi = self.span.hi;
return self.mk_expr(lo, hi, ex);
}
}
// For distingishing between record literals and blocks
2013-03-02 21:02:27 +00:00
fn looking_at_record_literal(&self) -> bool {
*self.token == token::LBRACE &&
2013-07-02 19:47:32 +00:00
(self.look_ahead(1, |t| token::is_keyword(keywords::Mut, t)) ||
(self.look_ahead(1, |t| token::is_plain_ident(t)) &&
self.look_ahead(2, |t| *t == token::COLON)))
}
2013-03-02 21:02:27 +00:00
fn parse_match_expr(&self) -> @expr {
let lo = self.last_span.lo;
let discriminant = self.parse_expr();
self.expect(&token::LBRACE);
let mut arms: ~[arm] = ~[];
while *self.token != token::RBRACE {
let pats = self.parse_pats();
2012-08-20 19:23:37 +00:00
let mut guard = None;
2013-07-02 19:47:32 +00:00
if self.eat_keyword(keywords::If) {
guard = Some(self.parse_expr());
}
self.expect(&token::FAT_ARROW);
let expr = self.parse_expr_res(RESTRICT_STMT_EXPR);
let require_comma =
!classify::expr_is_simple_block(expr)
&& *self.token != token::RBRACE;
if require_comma {
self.expect(&token::COMMA);
} else {
2013-02-24 17:54:41 +00:00
self.eat(&token::COMMA);
}
let blk = ast::Block {
view_items: ~[],
stmts: ~[],
expr: Some(expr),
id: self.get_id(),
rules: DefaultBlock,
2013-01-15 03:35:08 +00:00
span: expr.span,
};
arms.push(ast::arm { pats: pats, guard: guard, body: blk });
}
2013-04-12 05:10:31 +00:00
let hi = self.span.hi;
self.bump();
2012-08-25 04:03:51 +00:00
return self.mk_expr(lo, hi, expr_match(discriminant, arms));
}
2010-11-24 22:42:01 +00:00
2013-01-30 17:56:33 +00:00
// parse an expression
pub fn parse_expr(&self) -> @expr {
2012-08-02 00:30:05 +00:00
return self.parse_expr_res(UNRESTRICTED);
}
2013-01-30 17:56:33 +00:00
// parse an expression, subject to the given restriction
2013-03-02 21:02:27 +00:00
fn parse_expr_res(&self, r: restriction) -> @expr {
let old = *self.restriction;
*self.restriction = r;
let e = self.parse_assign_expr();
*self.restriction = old;
2012-08-02 00:30:05 +00:00
return e;
}
// parse the RHS of a local variable declaration (e.g. '= 14;')
2013-03-02 21:02:27 +00:00
fn parse_initializer(&self) -> Option<@expr> {
match *self.token {
2012-08-04 02:59:04 +00:00
token::EQ => {
self.bump();
return Some(self.parse_expr());
}
2012-08-04 02:59:04 +00:00
token::LARROW => {
self.obsolete(*self.span, ObsoleteMoveInit);
self.bump();
self.bump();
return None;
}
2012-08-04 02:59:04 +00:00
_ => {
2012-08-20 19:23:37 +00:00
return None;
}
}
2010-10-12 01:20:25 +00:00
}
2013-04-02 23:44:01 +00:00
// parse patterns, separated by '|' s
2013-03-02 21:02:27 +00:00
fn parse_pats(&self) -> ~[@pat] {
let mut pats = ~[];
loop {
2013-05-29 23:59:33 +00:00
pats.push(self.parse_pat());
if *self.token == token::BINOP(token::OR) { self.bump(); }
2012-08-02 00:30:05 +00:00
else { return pats; }
};
}
2013-03-02 21:02:27 +00:00
fn parse_pat_vec_elements(
&self,
) -> (~[@pat], Option<@pat>, ~[@pat]) {
let mut before = ~[];
let mut slice = None;
let mut after = ~[];
let mut first = true;
let mut before_slice = true;
while *self.token != token::RBRACKET {
if first { first = false; }
else { self.expect(&token::COMMA); }
let mut is_slice = false;
if before_slice {
if *self.token == token::DOTDOT {
self.bump();
is_slice = true;
before_slice = false;
}
}
2013-05-29 23:59:33 +00:00
let subpat = self.parse_pat();
if is_slice {
match subpat {
@ast::pat { node: pat_wild, _ } => (),
@ast::pat { node: pat_ident(_, _, _), _ } => (),
@ast::pat { span, _ } => self.span_fatal(
2013-05-02 16:28:53 +00:00
span, "expected an identifier or `_`"
)
}
slice = Some(subpat);
} else {
if before_slice {
before.push(subpat);
} else {
after.push(subpat);
}
}
}
(before, slice, after)
}
2013-04-02 23:44:01 +00:00
// parse the fields of a struct-like pattern
2013-05-29 23:59:33 +00:00
fn parse_pat_fields(&self) -> (~[ast::field_pat], bool) {
let mut fields = ~[];
let mut etc = false;
let mut first = true;
while *self.token != token::RBRACE {
if first { first = false; }
else { self.expect(&token::COMMA); }
if *self.token == token::UNDERSCORE {
self.bump();
if *self.token != token::RBRACE {
2013-02-25 03:27:43 +00:00
self.fatal(
fmt!(
"expected `}`, found `%s`",
self.this_token_to_str()
2013-02-25 03:27:43 +00:00
)
);
}
etc = true;
break;
}
let lo1 = self.last_span.lo;
2013-03-06 17:30:54 +00:00
let fieldname = self.parse_ident();
let hi1 = self.last_span.lo;
let fieldpath = ast_util::ident_to_path(mk_sp(lo1, hi1),
fieldname);
2013-04-12 05:10:31 +00:00
let subpat;
if *self.token == token::COLON {
self.bump();
2013-05-29 23:59:33 +00:00
subpat = self.parse_pat();
} else {
subpat = @ast::pat {
id: self.get_id(),
node: pat_ident(bind_infer, fieldpath, None),
span: *self.last_span
};
}
fields.push(ast::field_pat { ident: fieldname, pat: subpat });
}
return (fields, etc);
}
2013-05-29 23:59:33 +00:00
// parse a pattern.
pub fn parse_pat(&self) -> @pat {
2012-08-23 00:24:52 +00:00
maybe_whole!(self, nt_pat);
2012-08-01 21:34:35 +00:00
let lo = self.span.lo;
2013-07-02 19:47:32 +00:00
let mut hi;
2013-04-12 05:10:31 +00:00
let pat;
2013-07-02 19:47:32 +00:00
match *self.token {
2013-04-02 23:44:01 +00:00
// parse _
2013-07-02 19:47:32 +00:00
token::UNDERSCORE => {
self.bump();
pat = pat_wild;
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
}
// parse @pat
2012-08-04 02:59:04 +00:00
token::AT => {
self.bump();
2013-05-29 23:59:33 +00:00
let sub = self.parse_pat();
hi = sub.span.hi;
// HACK: parse @"..." as a literal of a vstore @str
2012-08-06 19:34:08 +00:00
pat = match sub.node {
2013-01-15 21:51:43 +00:00
pat_lit(e@@expr {
2013-01-30 17:56:33 +00:00
node: expr_lit(@codemap::spanned {
node: lit_str(_),
span: _}), _
2012-08-04 02:59:04 +00:00
}) => {
2013-01-15 21:51:43 +00:00
let vst = @expr {
id: self.get_id(),
node: expr_vstore(e, expr_vstore_box),
span: mk_sp(lo, hi),
};
pat_lit(vst)
}
2012-08-04 02:59:04 +00:00
_ => pat_box(sub)
};
2013-07-02 19:47:32 +00:00
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
}
2012-08-04 02:59:04 +00:00
token::TILDE => {
2013-04-02 23:44:01 +00:00
// parse ~pat
self.bump();
2013-05-29 23:59:33 +00:00
let sub = self.parse_pat();
hi = sub.span.hi;
// HACK: parse ~"..." as a literal of a vstore ~str
2012-08-06 19:34:08 +00:00
pat = match sub.node {
2013-01-15 21:51:43 +00:00
pat_lit(e@@expr {
2013-01-30 17:56:33 +00:00
node: expr_lit(@codemap::spanned {
node: lit_str(_),
span: _}), _
2012-08-04 02:59:04 +00:00
}) => {
2013-01-15 21:51:43 +00:00
let vst = @expr {
id: self.get_id(),
node: expr_vstore(e, expr_vstore_uniq),
span: mk_sp(lo, hi),
};
pat_lit(vst)
}
2012-08-04 02:59:04 +00:00
_ => pat_uniq(sub)
};
2013-07-02 19:47:32 +00:00
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
}
2012-09-08 00:07:32 +00:00
token::BINOP(token::AND) => {
2013-04-02 23:44:01 +00:00
// parse &pat
2012-09-08 00:07:32 +00:00
let lo = self.span.lo;
self.bump();
2013-05-29 23:59:33 +00:00
let sub = self.parse_pat();
2012-09-08 00:07:32 +00:00
hi = sub.span.hi;
// HACK: parse &"..." as a literal of a borrowed str
pat = match sub.node {
2013-01-15 21:51:43 +00:00
pat_lit(e@@expr {
2013-01-30 17:56:33 +00:00
node: expr_lit(@codemap::spanned {
node: lit_str(_), span: _}), _
2012-09-08 00:07:32 +00:00
}) => {
2013-01-15 21:51:43 +00:00
let vst = @expr {
id: self.get_id(),
node: expr_vstore(e, expr_vstore_slice),
span: mk_sp(lo, hi)
};
2012-09-08 00:07:32 +00:00
pat_lit(vst)
}
_ => pat_region(sub)
2013-07-02 19:47:32 +00:00
};
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
2012-09-08 00:07:32 +00:00
}
2012-08-04 02:59:04 +00:00
token::LBRACE => {
self.bump();
2013-05-29 23:59:33 +00:00
let (_, _) = self.parse_pat_fields();
self.bump();
self.obsolete(*self.span, ObsoleteRecordPattern);
pat = pat_wild;
2013-07-02 19:47:32 +00:00
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
}
2012-08-04 02:59:04 +00:00
token::LPAREN => {
2013-04-02 23:44:01 +00:00
// parse (pat,pat,pat,...) as tuple
self.bump();
if *self.token == token::RPAREN {
hi = self.span.hi;
self.bump();
2013-01-30 17:56:33 +00:00
let lit = @codemap::spanned {
node: lit_nil,
span: mk_sp(lo, hi)};
let expr = self.mk_expr(lo, hi, expr_lit(lit));
pat = pat_lit(expr);
2011-07-27 12:19:39 +00:00
} else {
2013-05-29 23:59:33 +00:00
let mut fields = ~[self.parse_pat()];
2013-07-02 19:47:32 +00:00
if self.look_ahead(1, |t| *t != token::RPAREN) {
while *self.token == token::COMMA {
self.bump();
2013-05-29 23:59:33 +00:00
fields.push(self.parse_pat());
}
}
if fields.len() == 1 { self.expect(&token::COMMA); }
self.expect(&token::RPAREN);
pat = pat_tup(fields);
2011-08-15 11:15:19 +00:00
}
2013-07-02 19:47:32 +00:00
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
}
token::LBRACKET => {
2013-04-02 23:44:01 +00:00
// parse [pat,pat,...] as vector pattern
self.bump();
let (before, slice, after) =
2013-05-29 23:59:33 +00:00
self.parse_pat_vec_elements();
2013-07-18 03:04:37 +00:00
self.expect(&token::RBRACKET);
pat = ast::pat_vec(before, slice, after);
2013-07-02 19:47:32 +00:00
hi = self.last_span.hi;
return @ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi)
}
}
2013-07-02 19:47:32 +00:00
_ => {}
}
let tok = self.token;
if !is_ident_or_path(tok)
|| self.is_keyword(keywords::True)
2013-07-02 19:47:32 +00:00
|| self.is_keyword(keywords::False) {
// Parse an expression pattern or exp .. exp.
//
// These expressions are limited to literals (possibly
// preceded by unary-minus) or identifiers.
let val = self.parse_literal_maybe_minus();
if self.eat(&token::DOTDOT) {
let end = if is_ident_or_path(tok) {
let path = self.parse_path_with_tps(true);
let hi = self.span.hi;
self.mk_expr(lo, hi, expr_path(path))
} else {
2013-07-02 19:47:32 +00:00
self.parse_literal_maybe_minus()
};
pat = pat_range(val, end);
} else {
2013-07-02 19:47:32 +00:00
pat = pat_lit(val);
}
} else if self.eat_keyword(keywords::Ref) {
// parse ref pat
let mutbl = self.parse_mutability();
pat = self.parse_pat_ident(bind_by_ref(mutbl));
} else {
let can_be_enum_or_struct = do self.look_ahead(1) |t| {
match *t {
token::LPAREN | token::LBRACKET | token::LT |
2013-07-02 19:47:32 +00:00
token::LBRACE | token::MOD_SEP => true,
_ => false,
}
2013-07-02 19:47:32 +00:00
};
2013-07-02 19:47:32 +00:00
if self.look_ahead(1, |t| *t == token::DOTDOT) {
let start = self.parse_expr_res(RESTRICT_NO_BAR_OP);
self.eat(&token::DOTDOT);
let end = self.parse_expr_res(RESTRICT_NO_BAR_OP);
pat = pat_range(start, end);
} else if is_plain_ident(&*self.token) && !can_be_enum_or_struct {
let name = self.parse_path_without_tps();
let sub;
if self.eat(&token::AT) {
// parse foo @ pat
sub = Some(self.parse_pat());
} else {
// or just foo
sub = None;
}
2013-07-02 19:47:32 +00:00
pat = pat_ident(bind_infer, name, sub);
} else {
// parse an enum pat
let enum_path = self.parse_path_with_tps(true);
match *self.token {
token::LBRACE => {
self.bump();
let (fields, etc) =
self.parse_pat_fields();
self.bump();
pat = pat_struct(enum_path, fields, etc);
}
2013-07-02 19:47:32 +00:00
_ => {
let mut args: ~[@pat] = ~[];
match *self.token {
token::LPAREN => {
let is_star = do self.look_ahead(1) |t| {
match *t {
token::BINOP(token::STAR) => true,
_ => false,
}
};
if is_star {
// This is a "top constructor only" pat
self.bump();
self.bump();
self.expect(&token::RPAREN);
pat = pat_enum(enum_path, None);
} else {
args = self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
seq_sep_trailing_disallowed(token::COMMA),
|p| p.parse_pat()
);
pat = pat_enum(enum_path, Some(args));
}
2013-07-02 19:47:32 +00:00
},
_ => {
if enum_path.idents.len()==1u {
// it could still be either an enum
// or an identifier pattern, resolve
// will sort it out:
pat = pat_ident(bind_infer,
enum_path,
None);
} else {
pat = pat_enum(enum_path, Some(args));
}
}
}
}
}
}
}
2013-07-02 19:47:32 +00:00
hi = self.last_span.hi;
@ast::pat {
id: self.get_id(),
node: pat,
span: mk_sp(lo, hi),
}
}
2013-04-29 20:16:02 +00:00
// parse ident or ident @ pat
2013-04-02 23:44:01 +00:00
// used by the copy foo and ref foo patterns to give a good
// error message when parsing mistakes like ref foo(a,b)
fn parse_pat_ident(&self,
binding_mode: ast::binding_mode)
-> ast::pat_ {
if !is_plain_ident(&*self.token) {
self.span_fatal(*self.last_span,
2013-05-02 16:28:53 +00:00
"expected identifier, found path");
}
2013-04-02 23:44:01 +00:00
// why a path here, and not just an identifier?
let name = self.parse_path_without_tps();
2013-02-24 17:54:41 +00:00
let sub = if self.eat(&token::AT) {
2013-05-29 23:59:33 +00:00
Some(self.parse_pat())
} else {
None
};
// just to be friendly, if they write something like
2012-08-20 19:23:37 +00:00
// ref Some(i)
// we end up here with ( as the current token. This shortly
// leads to a parse error. Note that if there is no explicit
// binding mode then we do not end up here, because the lookahead
// will direct us over to parse_enum_variant()
if *self.token == token::LPAREN {
self.span_fatal(
*self.last_span,
2013-05-02 16:28:53 +00:00
"expected identifier, found enum pattern");
}
pat_ident(binding_mode, name, sub)
}
// parse a local variable declaration
fn parse_local(&self, is_mutbl: bool) -> @Local {
let lo = self.span.lo;
2013-05-29 23:59:33 +00:00
let pat = self.parse_pat();
if is_mutbl && !ast_util::pat_is_ident(pat) {
self.obsolete(*self.span, ObsoleteMutWithMultipleBindings)
}
2013-07-06 04:57:11 +00:00
let mut ty = Ty {
2013-01-15 22:59:39 +00:00
id: self.get_id(),
node: ty_infer,
span: mk_sp(lo, lo),
};
2013-02-24 17:54:41 +00:00
if self.eat(&token::COLON) { ty = self.parse_ty(false); }
2013-04-15 23:31:57 +00:00
let init = self.parse_initializer();
@ast::Local {
is_mutbl: is_mutbl,
ty: ty,
pat: pat,
init: init,
id: self.get_id(),
span: mk_sp(lo, self.last_span.hi),
}
}
2013-04-02 23:44:01 +00:00
// parse a "let" stmt
2013-03-02 21:02:27 +00:00
fn parse_let(&self) -> @decl {
let is_mutbl = self.eat_keyword(keywords::Mut);
let lo = self.span.lo;
2013-06-04 22:14:56 +00:00
let local = self.parse_local(is_mutbl);
2013-02-24 17:54:41 +00:00
while self.eat(&token::COMMA) {
let _ = self.parse_local(is_mutbl);
self.obsolete(*self.span, ObsoleteMultipleLocalDecl);
2010-11-24 22:42:01 +00:00
}
return @spanned(lo, self.last_span.hi, decl_local(local));
2010-11-24 22:42:01 +00:00
}
// parse a structure field
fn parse_name_and_ty(&self,
pr: visibility,
attrs: ~[Attribute]) -> @struct_field {
let lo = self.span.lo;
if !is_plain_ident(&*self.token) {
self.fatal("expected ident");
}
2012-05-24 19:38:45 +00:00
let name = self.parse_ident();
self.expect(&token::COLON);
let ty = self.parse_ty(false);
@spanned(lo, self.last_span.hi, ast::struct_field_ {
kind: named_field(name, pr),
id: self.get_id(),
ty: ty,
attrs: attrs,
})
}
// parse a statement. may include decl.
// precondition: any attributes are parsed already
pub fn parse_stmt(&self, item_attrs: ~[Attribute]) -> @stmt {
2012-08-23 00:24:52 +00:00
maybe_whole!(self, nt_stmt);
2012-08-01 21:34:35 +00:00
2013-07-02 19:47:32 +00:00
fn check_expected_item(p: &Parser, found_attrs: bool) {
// If we have attributes then we should have an item
2013-07-02 19:47:32 +00:00
if found_attrs {
p.span_err(*p.last_span, "expected item after attributes");
}
}
let lo = self.span.lo;
if self.is_keyword(keywords::Let) {
2013-07-02 19:47:32 +00:00
check_expected_item(self, !item_attrs.is_empty());
self.expect_keyword(keywords::Let);
let decl = self.parse_let();
2012-08-02 00:30:05 +00:00
return @spanned(lo, decl.span.hi, stmt_decl(decl, self.get_id()));
} else if is_ident(&*self.token)
&& !token::is_any_keyword(self.token)
2013-07-02 19:47:32 +00:00
&& self.look_ahead(1, |t| *t == token::NOT) {
2013-04-02 23:44:01 +00:00
// parse a macro invocation. Looks like there's serious
// overlap here; if this clause doesn't catch it (and it
// won't, for brace-delimited macros) it will fall through
// to the macro clause of parse_item_or_view_item. This
// could use some cleanup, it appears to me.
// whoops! I now have a guess: I'm guessing the "parens-only"
// rule here is deliberate, to allow macro users to use parens
// for things that should be parsed as stmt_mac, and braces
// for things that should expand into items. Tricky, and
// somewhat awkward... and probably undocumented. Of course,
// I could just be wrong.
2013-07-02 19:47:32 +00:00
check_expected_item(self, !item_attrs.is_empty());
// Potential trouble: if we allow macros with paths instead of
// idents, we'd need to look ahead past the whole path here...
let pth = self.parse_path_without_tps();
self.bump();
let id = if *self.token == token::LPAREN {
token::special_idents::invalid // no special identifier
} else {
self.parse_ident()
};
let tts = self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
2013-02-24 23:41:54 +00:00
seq_sep_none(),
|p| p.parse_token_tree()
);
let hi = self.span.hi;
if id == token::special_idents::invalid {
return @spanned(lo, hi, stmt_mac(
spanned(lo, hi, mac_invoc_tt(pth, tts)), false));
} else {
// if it has a special ident, it's definitely an item
return @spanned(lo, hi, stmt_decl(
@spanned(lo, hi, decl_item(
self.mk_item(
lo, hi, id /*id is good here*/,
item_mac(spanned(lo, hi, mac_invoc_tt(pth, tts))),
inherited, ~[/*no attrs*/]))),
self.get_id()));
}
} else {
2013-07-02 19:47:32 +00:00
let found_attrs = !item_attrs.is_empty();
match self.parse_item_or_view_item(item_attrs, false) {
2013-05-02 16:28:53 +00:00
iovi_item(i) => {
let hi = i.span.hi;
let decl = @spanned(lo, hi, decl_item(i));
return @spanned(lo, hi, stmt_decl(decl, self.get_id()));
}
iovi_view_item(vi) => {
self.span_fatal(vi.span,
"view items must be declared at the top of the block");
}
iovi_foreign_item(_) => {
self.fatal("foreign items are not allowed here");
2013-05-02 16:28:53 +00:00
}
2013-07-02 19:47:32 +00:00
iovi_none(_) => { /* fallthrough */ }
}
2013-07-02 19:47:32 +00:00
check_expected_item(self, found_attrs);
// Remainder are line-expr stmts.
let e = self.parse_expr_res(RESTRICT_STMT_EXPR);
2012-08-02 00:30:05 +00:00
return @spanned(lo, e.span.hi, stmt_expr(e, self.get_id()));
}
}
2013-04-02 23:44:01 +00:00
// is this expression a successfully-parsed statement?
2013-03-02 21:02:27 +00:00
fn expr_is_complete(&self, e: @expr) -> bool {
return *self.restriction == RESTRICT_STMT_EXPR &&
!classify::expr_requires_semi_to_be_stmt(e);
}
// parse a block. No inner attrs are allowed.
pub fn parse_block(&self) -> Block {
maybe_whole!(self, nt_block);
let lo = self.span.lo;
if self.eat_keyword(keywords::Unsafe) {
self.obsolete(*self.span, ObsoleteUnsafeBlock);
}
self.expect(&token::LBRACE);
return self.parse_block_tail_(lo, DefaultBlock, ~[]);
}
// parse a block. Inner attrs are allowed.
fn parse_inner_attrs_and_block(&self)
-> (~[Attribute], Block) {
2012-08-23 00:24:52 +00:00
maybe_whole!(pair_empty self, nt_block);
2012-08-01 21:34:35 +00:00
let lo = self.span.lo;
if self.eat_keyword(keywords::Unsafe) {
self.obsolete(*self.span, ObsoleteUnsafeBlock);
}
self.expect(&token::LBRACE);
let (inner, next) = self.parse_inner_attrs_and_next();
2013-02-25 04:51:56 +00:00
(inner, self.parse_block_tail_(lo, DefaultBlock, next))
}
2013-04-02 23:44:01 +00:00
// Precondition: already parsed the '{' or '#{'
// I guess that also means "already parsed the 'impure'" if
// necessary, and this should take a qualifier.
// some blocks start with "#{"...
fn parse_block_tail(&self, lo: BytePos, s: BlockCheckMode) -> Block {
self.parse_block_tail_(lo, s, ~[])
}
2013-03-29 17:35:23 +00:00
// parse the rest of a block expression or function body
fn parse_block_tail_(&self, lo: BytePos, s: BlockCheckMode,
first_item_attrs: ~[Attribute]) -> Block {
let mut stmts = ~[];
2012-08-20 19:23:37 +00:00
let mut expr = None;
2012-08-14 21:22:52 +00:00
// wouldn't it be more uniform to parse view items only, here?
let ParsedItemsAndViewItems {
attrs_remaining: attrs_remaining,
view_items: view_items,
items: items,
_
} = self.parse_items_and_view_items(first_item_attrs,
false, false);
2012-08-14 21:22:52 +00:00
for item in items.iter() {
let decl = @spanned(item.span.lo, item.span.hi, decl_item(*item));
stmts.push(@spanned(item.span.lo, item.span.hi,
stmt_decl(decl, self.get_id())));
2012-08-14 21:22:52 +00:00
}
let mut attributes_box = attrs_remaining;
while (*self.token != token::RBRACE) {
// parsing items even when they're not allowed lets us give
// better error messages and recover more gracefully.
attributes_box.push_all(self.parse_outer_attributes());
match *self.token {
token::SEMI => {
if !attributes_box.is_empty() {
2013-05-23 16:39:24 +00:00
self.span_err(*self.last_span, "expected item after attributes");
attributes_box = ~[];
}
self.bump(); // empty
}
token::RBRACE => {
// fall through and out.
}
_ => {
let stmt = self.parse_stmt(attributes_box);
attributes_box = ~[];
match stmt.node {
2012-09-27 01:23:05 +00:00
stmt_expr(e, stmt_id) => {
// expression without semicolon
2013-07-02 19:47:32 +00:00
let has_semi;
match *self.token {
token::SEMI => {
2013-07-02 19:47:32 +00:00
has_semi = true;
}
token::RBRACE => {
2013-07-02 19:47:32 +00:00
has_semi = false;
expr = Some(e);
}
2013-07-02 19:47:32 +00:00
ref t => {
has_semi = false;
if classify::stmt_ends_with_semi(stmt) {
2012-09-27 01:23:05 +00:00
self.fatal(
fmt!(
"expected `;` or `}` after \
expression but found `%s`",
2013-07-02 19:47:32 +00:00
self.token_to_str(t)
)
);
}
stmts.push(stmt);
}
}
2013-07-02 19:47:32 +00:00
if has_semi {
self.bump();
stmts.push(@codemap::spanned {
node: stmt_semi(e, stmt_id),
span: stmt.span,
});
}
}
stmt_mac(ref m, _) => {
// statement macro; might be an expr
2013-07-02 19:47:32 +00:00
let has_semi;
match *self.token {
token::SEMI => {
2013-07-02 19:47:32 +00:00
has_semi = true;
}
token::RBRACE => {
// if a block ends in `m!(arg)` without
// a `;`, it must be an expr
2013-07-02 19:47:32 +00:00
has_semi = false;
expr = Some(
self.mk_mac_expr(stmt.span.lo,
stmt.span.hi,
2013-07-02 19:47:32 +00:00
m.node.clone()));
}
_ => {
has_semi = false;
stmts.push(stmt);
}
2013-07-02 19:47:32 +00:00
}
if has_semi {
self.bump();
stmts.push(@codemap::spanned {
node: stmt_mac((*m).clone(), true),
span: stmt.span,
});
}
}
_ => { // all other kinds of statements:
stmts.push(stmt);
if classify::stmt_ends_with_semi(stmt) {
self.expect(&token::SEMI);
}
}
}
}
}
}
if !attributes_box.is_empty() {
2013-05-23 16:39:24 +00:00
self.span_err(*self.last_span, "expected item after attributes");
}
2013-04-12 05:10:31 +00:00
let hi = self.span.hi;
self.bump();
ast::Block {
2013-01-15 03:35:08 +00:00
view_items: view_items,
stmts: stmts,
expr: expr,
id: self.get_id(),
rules: s,
span: mk_sp(lo, hi),
}
}
2013-03-02 21:02:27 +00:00
fn parse_optional_purity(&self) -> ast::purity {
if self.eat_keyword(keywords::Pure) {
self.obsolete(*self.last_span, ObsoletePurity);
ast::impure_fn
} else if self.eat_keyword(keywords::Unsafe) {
ast::unsafe_fn
} else {
ast::impure_fn
}
}
2013-03-02 21:02:27 +00:00
fn parse_optional_onceness(&self) -> ast::Onceness {
if self.eat_keyword(keywords::Once) { ast::Once } else { ast::Many }
}
// matches optbounds = ( ( : ( boundseq )? )? )
// where boundseq = ( bound + boundseq ) | bound
// and bound = 'static | ty
// Returns "None" if there's no colon (e.g. "T");
// Returns "Some(Empty)" if there's a colon but nothing after (e.g. "T:")
// Returns "Some(stuff)" otherwise (e.g. "T:stuff").
// NB: The None/Some distinction is important for issue #7264.
fn parse_optional_ty_param_bounds(&self) -> Option<OptVec<TyParamBound>> {
if !self.eat(&token::COLON) {
return None;
}
let mut result = opt_vec::Empty;
loop {
match *self.token {
token::LIFETIME(lifetime) => {
if "static" == self.id_to_str(lifetime) {
result.push(RegionTyParamBound);
} else {
self.span_err(*self.span,
2013-05-02 16:28:53 +00:00
"`'static` is the only permissible region bound here");
}
self.bump();
}
token::MOD_SEP | token::IDENT(*) => {
let tref = self.parse_trait_ref();
result.push(TraitTyParamBound(tref));
}
_ => break,
}
if !self.eat(&token::BINOP(token::PLUS)) {
break;
}
}
return Some(result);
}
// matches typaram = IDENT optbounds
2013-03-02 21:02:27 +00:00
fn parse_ty_param(&self) -> TyParam {
let ident = self.parse_ident();
let opt_bounds = self.parse_optional_ty_param_bounds();
// For typarams we don't care about the difference b/w "<T>" and "<T:>".
let bounds = opt_bounds.unwrap_or_default(opt_vec::Empty);
ast::TyParam { ident: ident, id: self.get_id(), bounds: bounds }
}
2013-03-29 17:35:23 +00:00
// parse a set of optional generic type parameter declarations
// matches generics = ( ) | ( < > ) | ( < typaramseq ( , )? > ) | ( < lifetimes ( , )? > )
// | ( < lifetimes , typaramseq ( , )? > )
// where typaramseq = ( typaram ) | ( typaram , typaramseq )
pub fn parse_generics(&self) -> ast::Generics {
2013-02-24 17:54:41 +00:00
if self.eat(&token::LT) {
let lifetimes = self.parse_lifetimes();
let ty_params = self.parse_seq_to_gt(
Some(token::COMMA),
|p| p.parse_ty_param());
ast::Generics { lifetimes: lifetimes, ty_params: ty_params }
} else {
ast_util::empty_generics()
}
}
2013-03-29 17:35:23 +00:00
// parse a generic use site
2013-07-18 03:04:37 +00:00
fn parse_generic_values(&self) -> (OptVec<ast::Lifetime>, ~[Ty]) {
if !self.eat(&token::LT) {
2013-02-26 19:35:17 +00:00
(opt_vec::Empty, ~[])
} else {
self.parse_generic_values_after_lt()
}
}
2013-07-18 03:04:37 +00:00
fn parse_generic_values_after_lt(&self) -> (OptVec<ast::Lifetime>, ~[Ty]) {
2013-02-26 19:35:17 +00:00
let lifetimes = self.parse_lifetimes();
let result = self.parse_seq_to_gt(
Some(token::COMMA),
|p| p.parse_ty(false));
2013-02-26 19:35:17 +00:00
(lifetimes, opt_vec::take_vec(result))
}
2011-07-27 12:19:39 +00:00
2013-04-04 21:30:43 +00:00
// parse the argument list and result type of a function declaration
pub fn parse_fn_decl(&self) -> fn_decl {
let args_or_capture_items: ~[arg_or_capture_item] =
self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
2013-02-24 23:41:54 +00:00
seq_sep_trailing_disallowed(token::COMMA),
2013-04-04 21:30:43 +00:00
|p| p.parse_arg()
2013-02-24 23:41:54 +00:00
);
let inputs = either::lefts(args_or_capture_items);
let (ret_style, ret_ty) = self.parse_ret_ty();
ast::fn_decl {
inputs: inputs,
output: ret_ty,
cf: ret_style,
}
}
2013-03-02 21:02:27 +00:00
fn is_self_ident(&self) -> bool {
2013-07-18 03:04:37 +00:00
*self.token == token::IDENT(special_idents::self_, false)
2012-07-30 23:33:02 +00:00
}
2013-03-02 21:02:27 +00:00
fn expect_self_ident(&self) {
2012-07-30 23:33:02 +00:00
if !self.is_self_ident() {
2013-02-25 03:27:43 +00:00
self.fatal(
fmt!(
"expected `self` but found `%s`",
self.this_token_to_str()
2013-02-25 03:27:43 +00:00
)
);
2012-07-30 23:33:02 +00:00
}
self.bump();
}
2013-04-04 21:30:11 +00:00
// parse the argument list and result type of a function
// that may have a self type.
2013-02-25 04:51:56 +00:00
fn parse_fn_decl_with_self(
2013-03-02 21:02:27 +00:00
&self,
2013-02-25 04:51:56 +00:00
parse_arg_fn:
&fn(&Parser) -> arg_or_capture_item
) -> (explicit_self, fn_decl) {
fn maybe_parse_explicit_self(
cnstr: &fn(v: mutability) -> ast::explicit_self_,
p: &Parser
) -> ast::explicit_self_ {
// We need to make sure it isn't a mode or a type
2013-07-02 19:47:32 +00:00
if p.look_ahead(1, |t| token::is_keyword(keywords::Self, t)) ||
((p.look_ahead(1, |t| token::is_keyword(keywords::Const, t)) ||
p.look_ahead(1, |t| token::is_keyword(keywords::Mut, t))) &&
p.look_ahead(2, |t| token::is_keyword(keywords::Self, t))) {
p.bump();
let mutability = p.parse_mutability();
p.expect_self_ident();
cnstr(mutability)
} else {
sty_static
}
}
fn maybe_parse_borrowed_explicit_self(this: &Parser) -> ast::explicit_self_ {
// The following things are possible to see here:
//
// fn(&self)
// fn(&mut self)
// fn(&'lt self)
// fn(&'lt mut self)
//
// We already know that the current token is `&`.
2013-07-02 19:47:32 +00:00
if this.look_ahead(1, |t| token::is_keyword(keywords::Self, t)) {
this.bump();
this.expect_self_ident();
sty_region(None, m_imm)
2013-07-02 19:47:32 +00:00
} else if this.look_ahead(1, |t| this.token_is_mutability(t)) &&
this.look_ahead(2,
|t| token::is_keyword(keywords::Self,
t)) {
this.bump();
let mutability = this.parse_mutability();
this.expect_self_ident();
sty_region(None, mutability)
2013-07-02 19:47:32 +00:00
} else if this.look_ahead(1, |t| this.token_is_lifetime(t)) &&
this.look_ahead(2,
|t| token::is_keyword(keywords::Self,
t)) {
this.bump();
2013-07-05 12:33:52 +00:00
let lifetime = this.parse_lifetime();
this.expect_self_ident();
sty_region(Some(lifetime), m_imm)
2013-07-02 19:47:32 +00:00
} else if this.look_ahead(1, |t| this.token_is_lifetime(t)) &&
this.look_ahead(2, |t| this.token_is_mutability(t)) &&
this.look_ahead(3, |t| token::is_keyword(keywords::Self,
t)) {
this.bump();
2013-07-05 12:33:52 +00:00
let lifetime = this.parse_lifetime();
let mutability = this.parse_mutability();
this.expect_self_ident();
sty_region(Some(lifetime), mutability)
} else {
sty_static
}
}
self.expect(&token::LPAREN);
2012-07-30 23:33:02 +00:00
2013-06-06 07:38:41 +00:00
// A bit of complexity and lookahead is needed here in order to be
2012-07-30 23:33:02 +00:00
// backwards compatible.
let lo = self.span.lo;
let explicit_self = match *self.token {
token::BINOP(token::AND) => {
maybe_parse_borrowed_explicit_self(self)
}
token::AT => {
maybe_parse_explicit_self(sty_box, self)
}
token::TILDE => {
maybe_parse_explicit_self(|mutability| {
if mutability != m_imm {
self.obsolete(*self.last_span, ObsoleteMutOwnedPointer);
}
sty_uniq
}, self)
}
token::IDENT(*) if self.is_self_ident() => {
self.bump();
sty_value
}
_ => {
sty_static
}
};
2012-07-30 23:33:02 +00:00
// If we parsed a self type, expect a comma before the argument list.
let args_or_capture_items;
if explicit_self != sty_static {
match *self.token {
2012-07-30 23:33:02 +00:00
token::COMMA => {
self.bump();
let sep = seq_sep_trailing_disallowed(token::COMMA);
2013-02-24 23:41:54 +00:00
args_or_capture_items = self.parse_seq_to_before_end(
&token::RPAREN,
2013-02-24 23:41:54 +00:00
sep,
parse_arg_fn
);
2012-07-30 23:33:02 +00:00
}
token::RPAREN => {
args_or_capture_items = ~[];
}
_ => {
2013-02-25 03:27:43 +00:00
self.fatal(
fmt!(
"expected `,` or `)`, found `%s`",
self.this_token_to_str()
2013-02-25 03:27:43 +00:00
)
);
2012-07-30 23:33:02 +00:00
}
}
} else {
let sep = seq_sep_trailing_disallowed(token::COMMA);
2013-02-24 23:41:54 +00:00
args_or_capture_items = self.parse_seq_to_before_end(
&token::RPAREN,
2013-02-24 23:41:54 +00:00
sep,
parse_arg_fn
);
2012-07-30 23:33:02 +00:00
}
self.expect(&token::RPAREN);
2012-07-30 23:33:02 +00:00
let hi = self.span.hi;
let inputs = either::lefts(args_or_capture_items);
let (ret_style, ret_ty) = self.parse_ret_ty();
let fn_decl = ast::fn_decl {
2012-07-30 23:33:02 +00:00
inputs: inputs,
output: ret_ty,
cf: ret_style
};
(spanned(lo, hi, explicit_self), fn_decl)
2012-07-30 23:33:02 +00:00
}
2013-04-02 23:44:01 +00:00
// parse the |arg, arg| header on a lambda
2013-03-02 21:02:27 +00:00
fn parse_fn_block_decl(&self) -> fn_decl {
let inputs_captures = {
2013-02-24 17:54:41 +00:00
if self.eat(&token::OROR) {
~[]
} else {
self.parse_unspanned_seq(
&token::BINOP(token::OR),
&token::BINOP(token::OR),
seq_sep_trailing_disallowed(token::COMMA),
2013-02-24 23:41:54 +00:00
|p| p.parse_fn_block_arg()
)
2012-05-04 19:33:04 +00:00
}
};
2013-02-24 17:54:41 +00:00
let output = if self.eat(&token::RARROW) {
self.parse_ty(false)
} else {
2013-07-06 04:57:11 +00:00
Ty { id: self.get_id(), node: ty_infer, span: *self.span }
};
ast::fn_decl {
inputs: either::lefts(inputs_captures),
output: output,
cf: return_val,
}
}
2013-04-04 21:30:11 +00:00
// parse the name and optional generic types of a function header.
2013-03-02 21:02:27 +00:00
fn parse_fn_header(&self) -> (ident, ast::Generics) {
2013-03-06 17:30:54 +00:00
let id = self.parse_ident();
let generics = self.parse_generics();
(id, generics)
}
fn mk_item(&self, lo: BytePos, hi: BytePos, ident: ident,
node: item_, vis: visibility,
attrs: ~[Attribute]) -> @item {
2013-01-13 21:13:41 +00:00
@ast::item { ident: ident,
attrs: attrs,
id: self.get_id(),
node: node,
vis: vis,
span: mk_sp(lo, hi) }
}
2013-04-04 21:30:11 +00:00
// parse an item-position function declaration.
fn parse_item_fn(&self, purity: purity, abis: AbiSet) -> item_info {
let (ident, generics) = self.parse_fn_header();
2013-04-04 21:30:43 +00:00
let decl = self.parse_fn_decl();
let (inner_attrs, body) = self.parse_inner_attrs_and_block();
(ident,
item_fn(decl, purity, abis, generics, body),
Some(inner_attrs))
}
2013-04-02 23:44:01 +00:00
// parse a method in a trait impl
2013-03-02 21:02:27 +00:00
fn parse_method(&self) -> @method {
2012-05-24 20:44:42 +00:00
let attrs = self.parse_outer_attributes();
let lo = self.span.lo;
2012-10-24 13:51:33 +00:00
let visa = self.parse_visibility();
let pur = self.parse_fn_purity();
2013-03-06 17:30:54 +00:00
let ident = self.parse_ident();
let generics = self.parse_generics();
let (explicit_self, decl) = do self.parse_fn_decl_with_self() |p| {
2012-07-30 23:33:02 +00:00
p.parse_arg()
};
let (inner_attrs, body) = self.parse_inner_attrs_and_block();
2013-02-26 14:35:36 +00:00
let hi = body.span.hi;
2012-06-28 06:09:51 +00:00
let attrs = vec::append(attrs, inner_attrs);
@ast::method {
ident: ident,
attrs: attrs,
generics: generics,
explicit_self: explicit_self,
purity: pur,
decl: decl,
body: body,
id: self.get_id(),
2013-02-26 14:35:36 +00:00
span: mk_sp(lo, hi),
self_id: self.get_id(),
vis: visa,
}
}
2013-03-29 17:35:23 +00:00
// parse trait Foo { ... }
2013-03-02 21:02:27 +00:00
fn parse_item_trait(&self) -> item_info {
2012-05-24 19:38:45 +00:00
let ident = self.parse_ident();
self.parse_region_param();
let tps = self.parse_generics();
2012-08-03 22:24:11 +00:00
// Parse traits, if necessary.
let traits;
if *self.token == token::COLON {
self.bump();
traits = self.parse_trait_ref_list(&token::LBRACE);
} else {
traits = ~[];
}
let meths = self.parse_trait_methods();
2012-08-20 19:23:37 +00:00
(ident, item_trait(tps, traits, meths), None)
}
// Parses two variants (with the region/type params always optional):
// impl<T> Foo { ... }
// impl<T> ToStr for ~[T] { ... }
2013-03-02 21:02:27 +00:00
fn parse_item_impl(&self, visibility: ast::visibility) -> item_info {
// First, parse type parameters if necessary.
let generics = self.parse_generics();
// This is a new-style impl declaration.
2012-07-18 23:18:02 +00:00
// XXX: clownshoes
let ident = special_idents::clownshoes_extensions;
// Special case: if the next identifier that follows is '(', don't
// allow this to be parsed as a trait.
let could_be_trait = *self.token != token::LPAREN;
// Parse the trait.
let mut ty = self.parse_ty(false);
2012-07-18 23:18:02 +00:00
// Parse traits, if necessary.
let opt_trait = if could_be_trait && self.eat_keyword(keywords::For) {
// New-style trait. Reinterpret the type as a trait.
let opt_trait_ref = match ty.node {
2013-07-06 01:38:56 +00:00
ty_path(ref path, None, node_id) => {
Some(trait_ref {
2013-07-02 19:47:32 +00:00
path: /* bad */ (*path).clone(),
ref_id: node_id
})
}
ty_path(*) => {
self.span_err(ty.span,
"bounded traits are only valid in type position");
None
}
_ => {
self.span_err(ty.span, "not a trait");
None
}
};
ty = self.parse_ty(false);
opt_trait_ref
2013-02-24 17:54:41 +00:00
} else if self.eat(&token::COLON) {
self.obsolete(*self.span, ObsoleteImplSyntax);
Some(self.parse_trait_ref())
} else {
None
};
// Do not allow visibility to be specified.
if visibility != ast::inherited {
self.obsolete(*self.span, ObsoleteImplVisibility);
}
let mut meths = ~[];
2013-02-24 17:54:41 +00:00
if !self.eat(&token::SEMI) {
self.expect(&token::LBRACE);
2013-02-24 17:54:41 +00:00
while !self.eat(&token::RBRACE) {
meths.push(self.parse_method());
}
2012-05-04 19:33:04 +00:00
}
(ident, item_impl(generics, opt_trait, ty, meths), None)
}
2013-03-29 17:35:23 +00:00
// parse a::B<~str,int>
fn parse_trait_ref(&self) -> trait_ref {
ast::trait_ref {
path: self.parse_path_with_tps(false),
ref_id: self.get_id(),
}
}
2013-03-29 17:35:23 +00:00
// parse B + C<~str,int> + D
fn parse_trait_ref_list(&self, ket: &token::Token) -> ~[trait_ref] {
self.parse_seq_to_before_end(
ket,
seq_sep_trailing_disallowed(token::BINOP(token::PLUS)),
2013-02-24 23:41:54 +00:00
|p| p.parse_trait_ref()
)
}
2013-03-29 17:35:23 +00:00
// parse struct Foo { ... }
2013-03-02 21:02:27 +00:00
fn parse_item_struct(&self) -> item_info {
2013-03-06 17:30:54 +00:00
let class_name = self.parse_ident();
self.parse_region_param();
let generics = self.parse_generics();
2013-02-24 17:54:41 +00:00
if self.eat(&token::COLON) {
self.obsolete(*self.span, ObsoleteClassTraits);
let _ = self.parse_trait_ref_list(&token::LBRACE);
2012-09-11 01:00:03 +00:00
}
let mut fields: ~[@struct_field];
let is_tuple_like;
2013-02-24 17:54:41 +00:00
if self.eat(&token::LBRACE) {
// It's a record-like struct.
is_tuple_like = false;
fields = ~[];
while *self.token != token::RBRACE {
let r = self.parse_struct_decl_field();
for struct_field in r.iter() {
2013-05-01 04:00:30 +00:00
fields.push(*struct_field)
}
}
2013-03-28 01:17:58 +00:00
if fields.len() == 0 {
2013-05-09 13:46:32 +00:00
self.fatal(fmt!("Unit-like struct should be written as `struct %s;`",
get_ident_interner().get(class_name.name)));
2013-03-28 01:17:58 +00:00
}
self.bump();
} else if *self.token == token::LPAREN {
// It's a tuple-like struct.
is_tuple_like = true;
2013-02-24 23:41:54 +00:00
fields = do self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
2013-02-24 23:41:54 +00:00
seq_sep_trailing_allowed(token::COMMA)
) |p| {
let attrs = self.parse_outer_attributes();
let lo = p.span.lo;
let struct_field_ = ast::struct_field_ {
kind: unnamed_field,
id: self.get_id(),
ty: p.parse_ty(false),
attrs: attrs,
};
@spanned(lo, p.span.hi, struct_field_)
};
self.expect(&token::SEMI);
2013-02-24 17:54:41 +00:00
} else if self.eat(&token::SEMI) {
// It's a unit-like struct.
is_tuple_like = true;
fields = ~[];
} else {
2013-02-25 03:27:43 +00:00
self.fatal(
fmt!(
"expected `{`, `(`, or `;` after struct name \
but found `%s`",
self.this_token_to_str()
2013-02-25 03:27:43 +00:00
)
);
}
let _ = self.get_id(); // XXX: Workaround for crazy bug.
let new_id = self.get_id();
(class_name,
2013-01-13 21:45:57 +00:00
item_struct(@ast::struct_def {
fields: fields,
ctor_id: if is_tuple_like { Some(new_id) } else { None }
}, generics),
None)
}
fn token_is_pound_or_doc_comment(&self, tok: token::Token) -> bool {
2012-08-06 19:34:08 +00:00
match tok {
2012-08-04 02:59:04 +00:00
token::POUND | token::DOC_COMMENT(_) => true,
_ => false
}
}
2013-04-19 17:41:59 +00:00
// parse a structure field declaration
pub fn parse_single_struct_field(&self,
vis: visibility,
attrs: ~[Attribute])
-> @struct_field {
2013-02-09 13:00:55 +00:00
if self.eat_obsolete_ident("let") {
self.obsolete(*self.last_span, ObsoleteLet);
2013-02-09 13:00:55 +00:00
}
2012-09-11 00:26:20 +00:00
let a_var = self.parse_name_and_ty(vis, attrs);
match *self.token {
2013-02-25 03:27:43 +00:00
token::SEMI => {
self.obsolete(*self.span, ObsoleteFieldTerminator);
2013-02-25 03:27:43 +00:00
self.bump();
}
token::COMMA => {
self.bump();
}
token::RBRACE => {}
_ => {
self.span_fatal(*self.span,
fmt!("expected `,`, or '}' but found `%s`",
self.this_token_to_str()));
2013-02-25 03:27:43 +00:00
}
}
2013-02-09 13:00:55 +00:00
a_var
}
2013-04-19 18:19:37 +00:00
// parse an element of a struct definition
2013-05-01 04:00:30 +00:00
fn parse_struct_decl_field(&self) -> ~[@struct_field] {
2013-02-09 13:00:55 +00:00
let attrs = self.parse_outer_attributes();
if self.try_parse_obsolete_priv_section(attrs) {
2013-05-01 04:00:30 +00:00
return ~[];
}
if self.eat_keyword(keywords::Priv) {
return ~[self.parse_single_struct_field(private, attrs)]
}
if self.eat_keyword(keywords::Pub) {
return ~[self.parse_single_struct_field(public, attrs)];
2012-05-31 01:14:40 +00:00
}
if self.try_parse_obsolete_struct_ctor() {
2013-05-01 04:00:30 +00:00
return ~[];
}
return ~[self.parse_single_struct_field(inherited, attrs)];
}
2013-04-02 23:44:01 +00:00
// parse visiility: PUB, PRIV, or nothing
2013-03-02 21:02:27 +00:00
fn parse_visibility(&self) -> visibility {
if self.eat_keyword(keywords::Pub) { public }
else if self.eat_keyword(keywords::Priv) { private }
else { inherited }
}
2013-03-02 21:02:27 +00:00
fn parse_staticness(&self) -> bool {
if self.eat_keyword(keywords::Static) {
self.obsolete(*self.last_span, ObsoleteStaticMethod);
true
} else {
false
}
}
2013-02-11 21:36:24 +00:00
// given a termination token and a vector of already-parsed
// attributes (of length 0 or 1), parse all of the items in a module
2013-07-02 19:47:32 +00:00
fn parse_mod_items(&self,
term: token::Token,
first_item_attrs: ~[Attribute])
2013-07-02 19:47:32 +00:00
-> _mod {
2013-02-11 21:36:24 +00:00
// parse all of the items up to closing or an attribute.
// view items are legal here.
let ParsedItemsAndViewItems {
attrs_remaining: attrs_remaining,
view_items: view_items,
items: starting_items,
_
2013-07-02 19:47:32 +00:00
} = self.parse_items_and_view_items(first_item_attrs, true, true);
let mut items: ~[@item] = starting_items;
2013-03-20 01:24:01 +00:00
let attrs_remaining_len = attrs_remaining.len();
2012-08-14 21:22:52 +00:00
2013-04-02 23:44:01 +00:00
// don't think this other loop is even necessary....
let mut first = true;
while *self.token != term {
2012-05-24 20:44:42 +00:00
let mut attrs = self.parse_outer_attributes();
2012-06-28 06:09:51 +00:00
if first {
2013-03-20 01:24:01 +00:00
attrs = attrs_remaining + attrs;
2012-06-28 06:09:51 +00:00
first = false;
}
debug!("parse_mod_items: parse_item_or_view_item(attrs=%?)",
attrs);
2013-07-02 19:47:32 +00:00
match self.parse_item_or_view_item(attrs,
true /* macros allowed */) {
iovi_item(item) => items.push(item),
iovi_view_item(view_item) => {
2013-07-02 19:47:32 +00:00
self.span_fatal(view_item.span,
"view items must be declared at the top of \
the module");
}
2012-08-04 02:59:04 +00:00
_ => {
2013-07-02 19:47:32 +00:00
self.fatal(fmt!("expected item but found `%s`",
self.this_token_to_str()));
}
}
}
2013-03-20 01:24:01 +00:00
if first && attrs_remaining_len > 0u {
// We parsed attributes for the first item but didn't find it
self.span_err(*self.last_span, "expected item after attributes");
}
2011-02-04 16:10:04 +00:00
ast::_mod { view_items: view_items, items: items }
}
2013-03-02 21:02:27 +00:00
fn parse_item_const(&self) -> item_info {
2013-06-22 01:46:34 +00:00
let m = if self.eat_keyword(keywords::Mut) {m_mutbl} else {m_imm};
2013-03-06 17:30:54 +00:00
let id = self.parse_ident();
self.expect(&token::COLON);
let ty = self.parse_ty(false);
self.expect(&token::EQ);
let e = self.parse_expr();
self.expect(&token::SEMI);
2013-06-22 01:46:34 +00:00
(id, item_static(ty, m, e), None)
}
// parse a `mod <foo> { ... }` or `mod <foo>;` item
fn parse_item_mod(&self, outer_attrs: &[Attribute]) -> item_info {
let id_span = *self.span;
2012-05-24 19:38:45 +00:00
let id = self.parse_ident();
if *self.token == token::SEMI {
2012-11-10 00:31:44 +00:00
self.bump();
// This mod is in an external file. Let's go get it!
2012-11-19 01:56:50 +00:00
let (m, attrs) = self.eval_src_mod(id, outer_attrs, id_span);
(id, m, Some(attrs))
2012-11-10 00:31:44 +00:00
} else {
self.push_mod_path(id, outer_attrs);
self.expect(&token::LBRACE);
let (inner, next) = self.parse_inner_attrs_and_next();
let m = self.parse_mod_items(token::RBRACE, next);
self.expect(&token::RBRACE);
self.pop_mod_path();
(id, item_mod(m), Some(inner))
2012-11-10 00:31:44 +00:00
}
}
fn push_mod_path(&self, id: ident, attrs: &[Attribute]) {
let default_path = token::interner_get(id.name);
let file_path = match ::attr::first_attr_value_str_by_name(attrs,
"path") {
Some(d) => d,
None => default_path
};
self.mod_path_stack.push(file_path)
}
2013-03-02 21:02:27 +00:00
fn pop_mod_path(&self) {
self.mod_path_stack.pop();
}
2013-04-02 23:44:01 +00:00
// read a module from a source file.
2013-07-02 19:47:32 +00:00
fn eval_src_mod(&self,
id: ast::ident,
outer_attrs: &[ast::Attribute],
2013-07-02 19:47:32 +00:00
id_sp: span)
-> (ast::item_, ~[ast::Attribute]) {
let prefix = Path(self.sess.cm.span_to_filename(*self.span));
2012-11-19 01:56:50 +00:00
let prefix = prefix.dir_path();
let mod_path_stack = &*self.mod_path_stack;
let mod_path = Path(".").push_many(*mod_path_stack);
let dir_path = prefix.push_many(mod_path.components);
2012-11-19 01:56:50 +00:00
let file_path = match ::attr::first_attr_value_str_by_name(
2013-07-02 19:47:32 +00:00
outer_attrs, "path") {
2013-02-15 04:19:27 +00:00
Some(d) => {
let path = Path(d);
2012-12-19 22:17:53 +00:00
if !path.is_absolute {
dir_path.push(d)
2012-12-19 22:17:53 +00:00
} else {
path
}
}
None => {
let mod_name = token::interner_get(id.name).to_owned();
let default_path_str = mod_name + ".rs";
let secondary_path_str = mod_name + "/mod.rs";
let default_path = dir_path.push(default_path_str);
let secondary_path = dir_path.push(secondary_path_str);
let default_exists = default_path.exists();
let secondary_exists = secondary_path.exists();
match (default_exists, secondary_exists) {
(true, false) => default_path,
(false, true) => secondary_path,
(false, false) => {
self.span_fatal(id_sp, fmt!("file not found for module `%s`", mod_name));
}
(true, true) => {
self.span_fatal(id_sp,
fmt!("file for module `%s` found at both %s and %s",
mod_name, default_path_str, secondary_path_str));
}
}
}
2012-11-19 01:56:50 +00:00
};
self.eval_src_mod_from_path(file_path,
2013-07-02 19:47:32 +00:00
outer_attrs.to_owned(),
id_sp)
2012-11-19 01:56:50 +00:00
}
2013-07-02 19:47:32 +00:00
fn eval_src_mod_from_path(&self,
path: Path,
outer_attrs: ~[ast::Attribute],
id_sp: span) -> (ast::item_, ~[ast::Attribute]) {
let full_path = path.normalize();
2013-07-08 15:05:52 +00:00
let maybe_i = do self.sess.included_mod_stack.iter().position |p| { *p == full_path };
match maybe_i {
Some(i) => {
let stack = &self.sess.included_mod_stack;
let mut err = ~"circular modules: ";
for p in stack.slice(i, stack.len()).iter() {
err.push_str(p.to_str());
err.push_str(" -> ");
}
err.push_str(full_path.to_str());
self.span_fatal(id_sp, err);
}
None => ()
}
self.sess.included_mod_stack.push(full_path.clone());
2012-11-19 01:56:50 +00:00
let p0 =
2013-07-02 19:47:32 +00:00
new_sub_parser_from_file(self.sess,
self.cfg.clone(),
&full_path,
id_sp);
let (inner, next) = p0.parse_inner_attrs_and_next();
let mod_attrs = vec::append(outer_attrs, inner);
let first_item_outer_attrs = next;
2012-11-19 01:56:50 +00:00
let m0 = p0.parse_mod_items(token::EOF, first_item_outer_attrs);
self.sess.included_mod_stack.pop();
2012-11-19 01:56:50 +00:00
return (ast::item_mod(m0), mod_attrs);
}
2013-04-02 23:44:01 +00:00
// parse a function declaration from a foreign module
fn parse_item_foreign_fn(&self, attrs: ~[Attribute]) -> @foreign_item {
let lo = self.span.lo;
let vis = self.parse_visibility();
// Parse obsolete purity.
let purity = self.parse_fn_purity();
if purity != impure_fn {
self.obsolete(*self.last_span, ObsoleteUnsafeExternFn);
}
let (ident, generics) = self.parse_fn_header();
2013-04-04 21:30:43 +00:00
let decl = self.parse_fn_decl();
2013-04-12 05:10:31 +00:00
let hi = self.span.hi;
self.expect(&token::SEMI);
@ast::foreign_item { ident: ident,
2013-01-13 20:02:16 +00:00
attrs: attrs,
node: foreign_item_fn(decl, generics),
2013-01-13 20:02:16 +00:00
id: self.get_id(),
span: mk_sp(lo, hi),
vis: vis }
}
2013-04-02 23:44:01 +00:00
// parse a const definition from a foreign module
2013-03-02 21:02:27 +00:00
fn parse_item_foreign_const(&self, vis: ast::visibility,
attrs: ~[Attribute]) -> @foreign_item {
let lo = self.span.lo;
// XXX: Obsolete; remove after snap.
if self.eat_keyword(keywords::Const) {
2013-03-22 21:51:35 +00:00
self.obsolete(*self.last_span, ObsoleteConstItem);
} else {
self.expect_keyword(keywords::Static);
}
let mutbl = self.eat_keyword(keywords::Mut);
let ident = self.parse_ident();
self.expect(&token::COLON);
let ty = self.parse_ty(false);
let hi = self.span.hi;
self.expect(&token::SEMI);
2013-01-13 20:02:16 +00:00
@ast::foreign_item { ident: ident,
attrs: attrs,
node: foreign_item_static(ty, mutbl),
2013-01-13 20:02:16 +00:00
id: self.get_id(),
span: mk_sp(lo, hi),
vis: vis }
}
2013-04-02 23:44:01 +00:00
// parse safe/unsafe and fn
2013-03-02 21:02:27 +00:00
fn parse_fn_purity(&self) -> purity {
if self.eat_keyword(keywords::Fn) { impure_fn }
else if self.eat_keyword(keywords::Pure) {
self.obsolete(*self.last_span, ObsoletePurity);
self.expect_keyword(keywords::Fn);
// NB: We parse this as impure for bootstrapping purposes.
impure_fn
} else if self.eat_keyword(keywords::Unsafe) {
self.expect_keyword(keywords::Fn);
unsafe_fn
}
2012-05-24 19:38:45 +00:00
else { self.unexpected(); }
}
2013-04-02 23:44:01 +00:00
// at this point, this is essentially a wrapper for
// parse_foreign_items.
fn parse_foreign_mod_items(&self,
sort: ast::foreign_mod_sort,
abis: AbiSet,
first_item_attrs: ~[Attribute])
-> foreign_mod {
let ParsedItemsAndViewItems {
attrs_remaining: attrs_remaining,
view_items: view_items,
items: _,
foreign_items: foreign_items
} = self.parse_foreign_items(first_item_attrs, true);
if (! attrs_remaining.is_empty()) {
self.span_err(*self.last_span,
2013-05-23 16:39:24 +00:00
"expected item after attributes");
}
assert!(*self.token == token::RBRACE);
ast::foreign_mod {
sort: sort,
abis: abis,
view_items: view_items,
items: foreign_items
}
}
2011-07-27 12:19:39 +00:00
2013-04-02 23:44:01 +00:00
// parse extern foo; or extern mod foo { ... } or extern { ... }
fn parse_item_foreign_mod(&self,
lo: BytePos,
opt_abis: Option<AbiSet>,
visibility: visibility,
attrs: ~[Attribute],
2012-08-14 21:22:52 +00:00
items_allowed: bool)
-> item_or_view_item {
let mut must_be_named_mod = false;
if self.is_keyword(keywords::Mod) {
must_be_named_mod = true;
self.expect_keyword(keywords::Mod);
} else if *self.token != token::LBRACE {
self.span_fatal(*self.span,
fmt!("expected `{` or `mod` but found `%s`",
self.this_token_to_str()));
}
let (sort, ident) = match *self.token {
token::IDENT(*) => (ast::named, self.parse_ident()),
_ => {
if must_be_named_mod {
self.span_fatal(*self.span,
fmt!("expected foreign module name but \
found `%s`",
self.this_token_to_str()));
}
(ast::anonymous,
special_idents::clownshoes_foreign_mod)
}
};
2013-03-29 17:35:23 +00:00
// extern mod foo { ... } or extern { ... }
2013-02-24 17:54:41 +00:00
if items_allowed && self.eat(&token::LBRACE) {
// `extern mod foo { ... }` is obsolete.
if sort == ast::named {
self.obsolete(*self.last_span, ObsoleteNamedExternModule);
}
// Do not allow visibility to be specified.
if visibility != ast::inherited {
self.obsolete(*self.last_span, ObsoleteExternVisibility);
}
let abis = opt_abis.unwrap_or_default(AbiSet::C());
let (inner, next) = self.parse_inner_attrs_and_next();
let m = self.parse_foreign_mod_items(sort, abis, next);
self.expect(&token::RBRACE);
return iovi_item(self.mk_item(lo,
self.last_span.hi,
ident,
item_foreign_mod(m),
public,
maybe_append(attrs, Some(inner))));
}
if opt_abis.is_some() {
2013-05-02 16:28:53 +00:00
self.span_err(*self.span, "an ABI may not be specified here");
}
// extern mod foo;
let metadata = self.parse_optional_meta();
self.expect(&token::SEMI);
2013-07-05 08:28:53 +00:00
iovi_view_item(ast::view_item {
node: view_item_extern_mod(ident, metadata, self.get_id()),
2013-07-02 19:47:32 +00:00
attrs: attrs,
vis: visibility,
span: mk_sp(lo, self.last_span.hi)
})
}
2013-03-29 17:35:23 +00:00
// parse type Foo = Bar;
2013-03-02 21:02:27 +00:00
fn parse_item_type(&self) -> item_info {
2013-03-28 22:45:09 +00:00
let ident = self.parse_ident();
self.parse_region_param();
let tps = self.parse_generics();
self.expect(&token::EQ);
let ty = self.parse_ty(false);
self.expect(&token::SEMI);
(ident, item_ty(ty, tps), None)
}
2013-03-29 17:35:23 +00:00
// parse obsolete region parameter
2013-03-02 21:02:27 +00:00
fn parse_region_param(&self) {
2013-02-24 17:54:41 +00:00
if self.eat(&token::BINOP(token::SLASH)) {
self.obsolete(*self.last_span, ObsoleteLifetimeNotation);
self.expect(&token::BINOP(token::AND));
}
2012-04-20 03:05:50 +00:00
}
2013-04-02 23:44:01 +00:00
// parse a structure-like enum variant definition
// this should probably be renamed or refactored...
2013-03-02 21:02:27 +00:00
fn parse_struct_def(&self) -> @struct_def {
let mut fields: ~[@struct_field] = ~[];
while *self.token != token::RBRACE {
let r = self.parse_struct_decl_field();
for struct_field in r.iter() {
2013-05-01 04:00:30 +00:00
fields.push(*struct_field);
2012-08-09 02:51:19 +00:00
}
}
self.bump();
2013-01-13 21:45:57 +00:00
return @ast::struct_def {
fields: fields,
ctor_id: None
2012-08-09 02:51:19 +00:00
};
}
2013-04-02 23:44:01 +00:00
// parse the part of an "enum" decl following the '{'
2013-04-01 02:27:51 +00:00
fn parse_enum_def(&self, _generics: &ast::Generics) -> enum_def {
let mut variants = ~[];
let mut all_nullary = true;
let mut have_disr = false;
while *self.token != token::RBRACE {
2012-05-24 20:44:42 +00:00
let variant_attrs = self.parse_outer_attributes();
let vlo = self.span.lo;
2012-08-09 02:51:19 +00:00
let vis = self.parse_visibility();
2012-08-15 17:58:35 +00:00
let ident;
let kind;
let mut args = ~[];
let mut disr_expr = None;
ident = self.parse_ident();
if self.eat(&token::LBRACE) {
// Parse a struct variant.
all_nullary = false;
kind = struct_variant_kind(self.parse_struct_def());
} else if *self.token == token::LPAREN {
all_nullary = false;
let arg_tys = self.parse_unspanned_seq(
&token::LPAREN,
&token::RPAREN,
seq_sep_trailing_disallowed(token::COMMA),
|p| p.parse_ty(false)
);
for ty in arg_tys.consume_iter() {
args.push(ast::variant_arg {
2013-07-06 04:57:11 +00:00
ty: ty,
id: self.get_id(),
});
2012-08-15 17:58:35 +00:00
}
kind = tuple_variant_kind(args);
} else if self.eat(&token::EQ) {
have_disr = true;
disr_expr = Some(self.parse_expr());
kind = tuple_variant_kind(args);
} else {
kind = tuple_variant_kind(~[]);
}
let vr = ast::variant_ {
name: ident,
attrs: variant_attrs,
kind: kind,
id: self.get_id(),
disr_expr: disr_expr,
vis: vis,
};
variants.push(spanned(vlo, self.last_span.hi, vr));
2013-04-19 16:45:02 +00:00
if !self.eat(&token::COMMA) { break; }
}
self.expect(&token::RBRACE);
if (have_disr && !all_nullary) {
self.fatal("discriminator values can only be used with a c-like \
enum");
}
ast::enum_def { variants: variants }
}
2013-04-02 23:44:01 +00:00
// parse an "enum" declaration
2013-03-02 21:02:27 +00:00
fn parse_item_enum(&self) -> item_info {
let id = self.parse_ident();
self.parse_region_param();
let generics = self.parse_generics();
// Newtype syntax
if *self.token == token::EQ {
2013-03-29 17:35:23 +00:00
// enum x = ty;
self.bump();
let ty = self.parse_ty(false);
self.expect(&token::SEMI);
let variant = spanned(ty.span.lo, ty.span.hi, ast::variant_ {
name: id,
attrs: ~[],
kind: tuple_variant_kind(
~[ast::variant_arg {ty: ty, id: self.get_id()}]
),
id: self.get_id(),
disr_expr: None,
vis: public,
});
2013-03-08 02:59:00 +00:00
self.obsolete(*self.last_span, ObsoleteNewtypeEnum);
return (
id,
item_enum(
ast::enum_def { variants: ~[variant] },
generics),
None
);
}
2013-03-29 17:35:23 +00:00
// enum X { ... }
self.expect(&token::LBRACE);
let enum_definition = self.parse_enum_def(&generics);
(id, item_enum(enum_definition, generics), None)
}
2013-03-02 21:02:27 +00:00
fn parse_fn_ty_sigil(&self) -> Option<Sigil> {
match *self.token {
token::AT => {
self.bump();
Some(ManagedSigil)
}
token::TILDE => {
self.bump();
Some(OwnedSigil)
}
token::BINOP(token::AND) => {
self.bump();
Some(BorrowedSigil)
}
_ => {
None
}
}
}
2013-07-02 19:47:32 +00:00
fn fn_expr_lookahead(&self, tok: &token::Token) -> bool {
match *tok {
2012-08-04 02:59:04 +00:00
token::LPAREN | token::AT | token::TILDE | token::BINOP(_) => true,
_ => false
}
}
// parse a string as an ABI spec on an extern type or module
fn parse_opt_abis(&self) -> Option<AbiSet> {
match *self.token {
token::LIT_STR(s) => {
self.bump();
let the_string = ident_to_str(&s);
let mut abis = AbiSet::empty();
for word in the_string.word_iter() {
match abi::lookup(word) {
Some(abi) => {
if abis.contains(abi) {
self.span_err(
*self.span,
fmt!("ABI `%s` appears twice",
word));
} else {
abis.add(abi);
}
}
None => {
self.span_err(
*self.span,
fmt!("illegal ABI: \
expected one of [%s], \
found `%s`",
2013-06-10 13:25:25 +00:00
abi::all_names().connect(", "),
word));
}
}
}
Some(abis)
}
_ => {
None
}
}
}
2013-02-11 21:36:24 +00:00
// parse one of the items or view items allowed by the
// flags; on failure, return iovi_none.
// NB: this function no longer parses the items inside an
// extern mod.
2013-07-02 19:47:32 +00:00
fn parse_item_or_view_item(&self,
attrs: ~[Attribute],
2013-07-02 19:47:32 +00:00
macros_allowed: bool)
-> item_or_view_item {
2013-03-02 21:02:27 +00:00
maybe_whole!(iovi self, nt_item);
let lo = self.span.lo;
let visibility = self.parse_visibility();
// must be a view item:
if self.eat_keyword(keywords::Use) {
// USE ITEM (iovi_view_item)
let view_item = self.parse_use();
self.expect(&token::SEMI);
2013-07-05 08:28:53 +00:00
return iovi_view_item(ast::view_item {
node: view_item,
attrs: attrs,
vis: visibility,
span: mk_sp(lo, self.last_span.hi)
});
}
// either a view item or an item:
if self.eat_keyword(keywords::Extern) {
let opt_abis = self.parse_opt_abis();
if self.eat_keyword(keywords::Fn) {
// EXTERN FUNCTION ITEM
let abis = opt_abis.unwrap_or_default(AbiSet::C());
let (ident, item_, extra_attrs) =
self.parse_item_fn(extern_fn, abis);
return iovi_item(self.mk_item(lo, self.last_span.hi, ident,
item_, visibility,
maybe_append(attrs,
extra_attrs)));
} else {
// EXTERN MODULE ITEM (iovi_view_item)
return self.parse_item_foreign_mod(lo, opt_abis, visibility, attrs,
true);
}
}
// the rest are all guaranteed to be items:
if (self.is_keyword(keywords::Const) ||
(self.is_keyword(keywords::Static) &&
2013-07-02 19:47:32 +00:00
self.look_ahead(1, |t| !token::is_keyword(keywords::Fn, t)))) {
2013-03-29 17:35:23 +00:00
// CONST / STATIC ITEM
if self.is_keyword(keywords::Const) {
2013-03-22 21:51:35 +00:00
self.obsolete(*self.span, ObsoleteConstItem);
}
self.bump();
let (ident, item_, extra_attrs) = self.parse_item_const();
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.is_keyword(keywords::Fn) &&
2013-07-02 19:47:32 +00:00
self.look_ahead(1, |f| !self.fn_expr_lookahead(f)) {
2013-03-29 17:35:23 +00:00
// FUNCTION ITEM
self.bump();
let (ident, item_, extra_attrs) =
self.parse_item_fn(impure_fn, AbiSet::Rust());
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Pure) {
2013-03-29 17:35:23 +00:00
// PURE FUNCTION ITEM (obsolete)
self.obsolete(*self.last_span, ObsoletePurity);
self.expect_keyword(keywords::Fn);
let (ident, item_, extra_attrs) =
self.parse_item_fn(impure_fn, AbiSet::Rust());
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.is_keyword(keywords::Unsafe)
2013-07-02 19:47:32 +00:00
&& self.look_ahead(1u, |t| *t != token::LBRACE) {
// UNSAFE FUNCTION ITEM
self.bump();
self.expect_keyword(keywords::Fn);
let (ident, item_, extra_attrs) =
self.parse_item_fn(unsafe_fn, AbiSet::Rust());
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Mod) {
2013-02-11 21:36:24 +00:00
// MODULE ITEM
2013-07-02 19:47:32 +00:00
let (ident, item_, extra_attrs) = self.parse_item_mod(attrs);
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Type) {
2013-02-11 21:36:24 +00:00
// TYPE ITEM
let (ident, item_, extra_attrs) = self.parse_item_type();
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Enum) {
2013-02-11 21:36:24 +00:00
// ENUM ITEM
let (ident, item_, extra_attrs) = self.parse_item_enum();
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Trait) {
2013-02-11 21:36:24 +00:00
// TRAIT ITEM
let (ident, item_, extra_attrs) = self.parse_item_trait();
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Impl) {
2013-02-11 21:36:24 +00:00
// IMPL ITEM
let (ident, item_, extra_attrs) =
self.parse_item_impl(visibility);
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
if self.eat_keyword(keywords::Struct) {
2013-02-11 21:36:24 +00:00
// STRUCT ITEM
let (ident, item_, extra_attrs) = self.parse_item_struct();
return iovi_item(self.mk_item(lo, self.last_span.hi, ident, item_,
visibility,
maybe_append(attrs, extra_attrs)));
}
self.parse_macro_use_or_failure(attrs,macros_allowed,lo,visibility)
}
// parse a foreign item; on failure, return iovi_none.
2013-07-02 19:47:32 +00:00
fn parse_foreign_item(&self,
attrs: ~[Attribute],
2013-07-02 19:47:32 +00:00
macros_allowed: bool)
-> item_or_view_item {
maybe_whole!(iovi self, nt_item);
let lo = self.span.lo;
let visibility = self.parse_visibility();
if (self.is_keyword(keywords::Const) || self.is_keyword(keywords::Static)) {
// FOREIGN CONST ITEM
let item = self.parse_item_foreign_const(visibility, attrs);
return iovi_foreign_item(item);
}
if (self.is_keyword(keywords::Fn) || self.is_keyword(keywords::Pure) ||
self.is_keyword(keywords::Unsafe)) {
// FOREIGN FUNCTION ITEM
2013-05-22 07:11:48 +00:00
let item = self.parse_item_foreign_fn(attrs);
return iovi_foreign_item(item);
}
self.parse_macro_use_or_failure(attrs,macros_allowed,lo,visibility)
}
// this is the fall-through for parsing items.
fn parse_macro_use_or_failure(
&self,
attrs: ~[Attribute],
macros_allowed: bool,
lo : BytePos,
visibility : visibility
) -> item_or_view_item {
if macros_allowed && !token::is_any_keyword(self.token)
2013-07-02 19:47:32 +00:00
&& self.look_ahead(1, |t| *t == token::NOT)
&& (self.look_ahead(2, |t| is_plain_ident(t))
|| self.look_ahead(2, |t| *t == token::LPAREN)
|| self.look_ahead(2, |t| *t == token::LBRACE)) {
2013-02-11 21:36:24 +00:00
// MACRO INVOCATION ITEM
if attrs.len() > 0 {
self.fatal("attrs on macros are not yet supported");
}
// item macro.
let pth = self.parse_path_without_tps();
self.expect(&token::NOT);
// a 'special' identifier (like what `macro_rules!` uses)
// is optional. We should eventually unify invoc syntax
// and remove this.
let id = if is_plain_ident(&*self.token) {
self.parse_ident()
} else {
token::special_idents::invalid // no special identifier
};
2013-02-11 21:36:24 +00:00
// eat a matched-delimiter token tree:
let tts = match *self.token {
2013-02-24 23:41:54 +00:00
token::LPAREN | token::LBRACE => {
let ket = token::flip_delimiter(&*self.token);
2013-07-02 19:47:32 +00:00
self.bump();
self.parse_seq_to_end(&ket,
seq_sep_none(),
|p| p.parse_token_tree())
2013-02-24 23:41:54 +00:00
}
_ => self.fatal("expected open delimiter")
};
2013-02-11 21:36:24 +00:00
// single-variant-enum... :
let m = ast::mac_invoc_tt(pth, tts);
2013-01-30 17:56:33 +00:00
let m: ast::mac = codemap::spanned { node: m,
span: mk_sp(self.span.lo,
self.span.hi) };
let item_ = item_mac(m);
return iovi_item(self.mk_item(lo, self.last_span.hi, id, item_,
visibility, attrs));
}
// FAILURE TO PARSE ITEM
if visibility != inherited {
let mut s = ~"unmatched visibility `";
if visibility == public {
s.push_str("pub")
} else {
s.push_str("priv")
}
s.push_char('`');
self.span_fatal(*self.last_span, s);
}
2013-07-02 19:47:32 +00:00
return iovi_none(attrs);
}
pub fn parse_item(&self, attrs: ~[Attribute]) -> Option<@ast::item> {
match self.parse_item_or_view_item(attrs, true) {
2013-07-18 03:04:37 +00:00
iovi_none(_) => None,
iovi_view_item(_) =>
self.fatal("view items are not allowed here"),
iovi_foreign_item(_) =>
self.fatal("foreign items are not allowed here"),
2013-07-18 03:04:37 +00:00
iovi_item(item) => Some(item)
}
}
2013-04-02 23:44:01 +00:00
// parse, e.g., "use a::b::{z,y}"
2013-03-02 21:02:27 +00:00
fn parse_use(&self) -> view_item_ {
return view_item_use(self.parse_view_paths());
}
2013-03-29 17:35:23 +00:00
// matches view_path : MOD? IDENT EQ non_global_path
// | MOD? non_global_path MOD_SEP LBRACE RBRACE
// | MOD? non_global_path MOD_SEP LBRACE ident_seq RBRACE
// | MOD? non_global_path MOD_SEP STAR
// | MOD? non_global_path
2013-03-02 21:02:27 +00:00
fn parse_view_path(&self) -> @view_path {
let lo = self.span.lo;
2012-08-31 18:19:07 +00:00
2012-05-24 19:38:45 +00:00
let first_ident = self.parse_ident();
let mut path = ~[first_ident];
debug!("parsed view_path: %s", self.id_to_str(first_ident));
match *self.token {
2012-08-04 02:59:04 +00:00
token::EQ => {
// x = foo::bar
self.bump();
path = ~[self.parse_ident()];
while *self.token == token::MOD_SEP {
self.bump();
2012-05-24 19:38:45 +00:00
let id = self.parse_ident();
path.push(id);
}
2013-07-05 10:15:21 +00:00
let path = ast::Path { span: mk_sp(lo, self.span.hi),
2013-01-13 18:48:09 +00:00
global: false,
idents: path,
rp: None,
types: ~[] };
2012-08-02 00:30:05 +00:00
return @spanned(lo, self.span.hi,
view_path_simple(first_ident,
path,
self.get_id()));
}
2011-09-12 10:39:38 +00:00
2012-08-04 02:59:04 +00:00
token::MOD_SEP => {
// foo::bar or foo::{a,b,c} or foo::*
while *self.token == token::MOD_SEP {
self.bump();
match *self.token {
2012-08-04 02:59:04 +00:00
token::IDENT(i, _) => {
self.bump();
path.push(i);
}
2011-09-02 22:34:58 +00:00
// foo::bar::{a,b,c}
2012-08-04 02:59:04 +00:00
token::LBRACE => {
let idents = self.parse_unspanned_seq(
&token::LBRACE,
&token::RBRACE,
seq_sep_trailing_allowed(token::COMMA),
2013-02-24 23:41:54 +00:00
|p| p.parse_path_list_ident()
);
2013-07-05 10:15:21 +00:00
let path = ast::Path { span: mk_sp(lo, self.span.hi),
2013-01-13 18:48:09 +00:00
global: false,
idents: path,
rp: None,
types: ~[] };
2012-08-02 00:30:05 +00:00
return @spanned(lo, self.span.hi,
view_path_list(path, idents, self.get_id()));
}
// foo::bar::*
2012-08-04 02:59:04 +00:00
token::BINOP(token::STAR) => {
self.bump();
2013-07-05 10:15:21 +00:00
let path = ast::Path { span: mk_sp(lo, self.span.hi),
2013-01-13 18:48:09 +00:00
global: false,
idents: path,
rp: None,
types: ~[] };
2012-08-02 00:30:05 +00:00
return @spanned(lo, self.span.hi,
2013-04-03 17:28:14 +00:00
view_path_glob(path, self.get_id()));
}
2011-09-12 10:39:38 +00:00
2012-08-04 02:59:04 +00:00
_ => break
}
}
}
2012-08-04 02:59:04 +00:00
_ => ()
}
2013-05-14 09:52:12 +00:00
let last = path[path.len() - 1u];
2013-07-05 10:15:21 +00:00
let path = ast::Path { span: mk_sp(lo, self.span.hi),
2013-01-13 18:48:09 +00:00
global: false,
idents: path,
rp: None,
types: ~[] };
return @spanned(lo,
2013-05-02 17:36:24 +00:00
self.last_span.hi,
view_path_simple(last, path, self.get_id()));
}
2010-12-25 04:25:02 +00:00
2013-03-29 17:35:23 +00:00
// matches view_paths = view_path | view_path , view_paths
2013-03-02 21:02:27 +00:00
fn parse_view_paths(&self) -> ~[@view_path] {
let mut vp = ~[self.parse_view_path()];
while *self.token == token::COMMA {
self.bump();
vp.push(self.parse_view_path());
}
2012-08-02 00:30:05 +00:00
return vp;
}
2013-03-02 21:02:27 +00:00
fn is_view_item(&self) -> bool {
if !self.is_keyword(keywords::Pub) && !self.is_keyword(keywords::Priv) {
2013-07-02 19:47:32 +00:00
token::is_keyword(keywords::Use, self.token)
|| (token::is_keyword(keywords::Extern, self.token) &&
self.look_ahead(1,
|t| token::is_keyword(keywords::Mod, t)))
} else {
2013-07-02 19:47:32 +00:00
self.look_ahead(1, |t| token::is_keyword(keywords::Use, t))
|| (self.look_ahead(1,
|t| token::is_keyword(keywords::Extern,
t)) &&
self.look_ahead(2,
|t| token::is_keyword(keywords::Mod, t)))
}
}
2013-02-11 21:36:24 +00:00
// parse a view item.
2013-03-02 21:02:27 +00:00
fn parse_view_item(
&self,
attrs: ~[Attribute],
2013-03-02 21:02:27 +00:00
vis: visibility
2013-07-05 08:28:53 +00:00
) -> view_item {
let lo = self.span.lo;
let node = if self.eat_keyword(keywords::Use) {
self.parse_use()
} else if self.eat_keyword(keywords::Extern) {
self.expect_keyword(keywords::Mod);
let ident = self.parse_ident();
let metadata = self.parse_optional_meta();
view_item_extern_mod(ident, metadata, self.get_id())
} else {
self.bug("expected view item");
};
self.expect(&token::SEMI);
2013-07-05 08:28:53 +00:00
ast::view_item { node: node,
attrs: attrs,
vis: vis,
span: mk_sp(lo, self.last_span.hi) }
}
2013-02-11 21:36:24 +00:00
// Parses a sequence of items. Stops when it finds program
// text that can't be parsed as an item
// - mod_items uses extern_mod_allowed = true
// - block_tail_ uses extern_mod_allowed = false
fn parse_items_and_view_items(&self,
first_item_attrs: ~[Attribute],
mut extern_mod_allowed: bool,
macros_allowed: bool)
-> ParsedItemsAndViewItems {
2012-06-28 06:09:51 +00:00
let mut attrs = vec::append(first_item_attrs,
self.parse_outer_attributes());
// First, parse view items.
2013-07-05 08:28:53 +00:00
let mut view_items : ~[ast::view_item] = ~[];
let mut items = ~[];
2013-07-18 03:04:37 +00:00
// I think this code would probably read better as a single
// loop with a mutable three-state-variable (for extern mods,
// view items, and regular items) ... except that because
// of macros, I'd like to delay that entire check until later.
loop {
2013-07-02 19:47:32 +00:00
match self.parse_item_or_view_item(attrs, macros_allowed) {
iovi_none(attrs) => {
return ParsedItemsAndViewItems {
attrs_remaining: attrs,
view_items: view_items,
items: items,
foreign_items: ~[]
}
}
iovi_view_item(view_item) => {
match view_item.node {
view_item_use(*) => {
// `extern mod` must precede `use`.
extern_mod_allowed = false;
}
view_item_extern_mod(*)
if !extern_mod_allowed => {
self.span_err(view_item.span,
2013-05-02 16:28:53 +00:00
"\"extern mod\" declarations are not allowed here");
}
view_item_extern_mod(*) => {}
2012-08-14 21:22:52 +00:00
}
view_items.push(view_item);
}
iovi_item(item) => {
items.push(item);
attrs = self.parse_outer_attributes();
break;
}
iovi_foreign_item(_) => {
fail!();
2012-08-14 21:22:52 +00:00
}
}
attrs = self.parse_outer_attributes();
}
// Next, parse items.
2013-07-02 19:47:32 +00:00
loop {
match self.parse_item_or_view_item(attrs, macros_allowed) {
iovi_none(returned_attrs) => {
attrs = returned_attrs;
break
}
iovi_view_item(view_item) => {
attrs = self.parse_outer_attributes();
self.span_err(view_item.span,
"`use` and `extern mod` declarations must precede items");
}
iovi_item(item) => {
attrs = self.parse_outer_attributes();
items.push(item)
}
iovi_foreign_item(_) => {
fail!();
}
2012-08-14 21:22:52 +00:00
}
}
2012-08-14 21:22:52 +00:00
ParsedItemsAndViewItems {
attrs_remaining: attrs,
view_items: view_items,
items: items,
foreign_items: ~[]
}
}
// Parses a sequence of foreign items. Stops when it finds program
// text that can't be parsed as an item
fn parse_foreign_items(&self, first_item_attrs: ~[Attribute],
macros_allowed: bool)
-> ParsedItemsAndViewItems {
let mut attrs = vec::append(first_item_attrs,
self.parse_outer_attributes());
let mut foreign_items = ~[];
loop {
2013-07-02 19:47:32 +00:00
match self.parse_foreign_item(attrs, macros_allowed) {
iovi_none(returned_attrs) => {
2013-05-22 07:11:48 +00:00
if *self.token == token::RBRACE {
2013-07-02 19:47:32 +00:00
attrs = returned_attrs;
2013-05-22 07:11:48 +00:00
break
}
self.unexpected();
},
iovi_view_item(view_item) => {
// I think this can't occur:
self.span_err(view_item.span,
2013-05-02 16:28:53 +00:00
"`use` and `extern mod` declarations must precede items");
}
iovi_item(item) => {
// FIXME #5668: this will occur for a macro invocation:
self.span_fatal(item.span, "macros cannot expand to foreign items");
}
iovi_foreign_item(foreign_item) => {
foreign_items.push(foreign_item);
}
}
attrs = self.parse_outer_attributes();
}
ParsedItemsAndViewItems {
attrs_remaining: attrs,
view_items: ~[],
items: ~[],
foreign_items: foreign_items
}
}
2013-04-02 23:44:01 +00:00
// Parses a source module as a crate. This is the main
// entry point for the parser.
pub fn parse_crate_mod(&self) -> @Crate {
let lo = self.span.lo;
2013-02-11 21:36:24 +00:00
// parse the crate's inner attrs, maybe (oops) one
// of the attrs of an item:
let (inner, next) = self.parse_inner_attrs_and_next();
let first_item_outer_attrs = next;
2013-02-11 21:36:24 +00:00
// parse the items inside the crate:
let m = self.parse_mod_items(token::EOF, first_item_outer_attrs);
@ast::Crate {
module: m,
attrs: inner,
config: self.cfg.clone(),
span: mk_sp(lo, self.span.lo)
}
}
pub fn parse_str(&self) -> @str {
match *self.token {
token::LIT_STR(s) => {
self.bump();
ident_to_str(&s)
}
_ => self.fatal("expected string literal")
}
}
}