2018-08-04 08:58:22 -05:00
|
|
|
mod atom;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
pub(super) use self::atom::literal;
|
|
|
|
|
2018-08-07 06:24:03 -05:00
|
|
|
const EXPR_FIRST: TokenSet = LHS_FIRST;
|
2018-08-04 08:58:22 -05:00
|
|
|
|
|
|
|
pub(super) fn expr(p: &mut Parser) {
|
2018-08-04 09:12:00 -05:00
|
|
|
let r = Restrictions { forbid_structs: false };
|
|
|
|
expr_bp(p, r, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_no_struct(p: &mut Parser) {
|
|
|
|
let r = Restrictions { forbid_structs: true };
|
|
|
|
expr_bp(p, r, 1)
|
2018-08-04 08:58:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// test block
|
|
|
|
// fn a() {}
|
|
|
|
// fn b() { let _ = 1; }
|
|
|
|
// fn c() { 1; 2; }
|
|
|
|
// fn d() { 1; 2 }
|
|
|
|
pub(super) fn block(p: &mut Parser) {
|
|
|
|
if !p.at(L_CURLY) {
|
|
|
|
p.error("expected block");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
atom::block_expr(p);
|
|
|
|
}
|
|
|
|
|
2018-08-04 09:12:00 -05:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
struct Restrictions {
|
|
|
|
forbid_structs: bool
|
|
|
|
}
|
|
|
|
|
2018-08-05 08:09:25 -05:00
|
|
|
enum Op {
|
|
|
|
Simple,
|
2018-08-05 08:15:40 -05:00
|
|
|
Composite(SyntaxKind, u8),
|
2018-08-05 08:09:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn current_op(p: &Parser) -> (u8, Op) {
|
|
|
|
if p.at_compound2(PLUS, EQ) {
|
2018-08-05 08:15:40 -05:00
|
|
|
return (1, Op::Composite(PLUSEQ, 2));
|
2018-08-05 08:09:25 -05:00
|
|
|
}
|
|
|
|
if p.at_compound2(MINUS, EQ) {
|
2018-08-05 08:15:40 -05:00
|
|
|
return (1, Op::Composite(MINUSEQ, 2));
|
2018-08-05 08:09:25 -05:00
|
|
|
}
|
2018-08-07 06:24:03 -05:00
|
|
|
if p.at_compound3(L_ANGLE, L_ANGLE, EQ) {
|
|
|
|
return (1, Op::Composite(SHLEQ, 3));
|
|
|
|
}
|
|
|
|
if p.at_compound3(R_ANGLE, R_ANGLE, EQ) {
|
|
|
|
return (1, Op::Composite(SHREQ, 3));
|
|
|
|
}
|
2018-08-05 10:16:52 -05:00
|
|
|
if p.at_compound2(PIPE, PIPE) {
|
|
|
|
return (3, Op::Composite(PIPEPIPE, 2));
|
|
|
|
}
|
2018-08-05 10:18:02 -05:00
|
|
|
if p.at_compound2(AMP, AMP) {
|
|
|
|
return (4, Op::Composite(AMPAMP, 2));
|
2018-08-05 10:16:52 -05:00
|
|
|
}
|
|
|
|
if p.at_compound2(L_ANGLE, EQ) {
|
|
|
|
return (5, Op::Composite(LTEQ, 2));
|
|
|
|
}
|
|
|
|
if p.at_compound2(R_ANGLE, EQ) {
|
|
|
|
return (5, Op::Composite(GTEQ, 2));
|
|
|
|
}
|
2018-08-07 06:24:03 -05:00
|
|
|
if p.at_compound2(L_ANGLE, L_ANGLE) {
|
|
|
|
return (9, Op::Composite(SHL, 2));
|
|
|
|
}
|
|
|
|
if p.at_compound2(R_ANGLE, R_ANGLE) {
|
|
|
|
return (9, Op::Composite(SHR, 2));
|
|
|
|
}
|
2018-08-05 08:09:25 -05:00
|
|
|
|
|
|
|
let bp = match p.current() {
|
2018-08-04 09:17:20 -05:00
|
|
|
EQ => 1,
|
2018-08-05 10:07:06 -05:00
|
|
|
DOTDOT => 2,
|
2018-08-05 10:16:52 -05:00
|
|
|
EQEQ | NEQ => 5,
|
2018-08-07 06:24:03 -05:00
|
|
|
PIPE => 6,
|
|
|
|
CARET => 7,
|
|
|
|
AMP => 8,
|
|
|
|
MINUS | PLUS => 10,
|
|
|
|
STAR | SLASH | PERCENT => 11,
|
2018-08-05 08:09:25 -05:00
|
|
|
_ => 0,
|
|
|
|
};
|
|
|
|
(bp, Op::Simple)
|
2018-08-04 08:58:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parses expression with binding power of at least bp.
|
2018-08-04 09:12:00 -05:00
|
|
|
fn expr_bp(p: &mut Parser, r: Restrictions, bp: u8) {
|
2018-08-05 10:07:06 -05:00
|
|
|
let mut lhs = match lhs(p, r) {
|
2018-08-04 08:58:22 -05:00
|
|
|
Some(lhs) => lhs,
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
|
|
|
|
loop {
|
2018-08-05 08:09:25 -05:00
|
|
|
let (op_bp, op) = current_op(p);
|
2018-08-04 08:58:22 -05:00
|
|
|
if op_bp < bp {
|
|
|
|
break;
|
|
|
|
}
|
2018-08-05 08:09:25 -05:00
|
|
|
match op {
|
|
|
|
Op::Simple => p.bump(),
|
|
|
|
Op::Composite(kind, n) => {
|
|
|
|
p.bump_compound(kind, n);
|
2018-08-05 08:15:40 -05:00
|
|
|
}
|
2018-08-05 08:09:25 -05:00
|
|
|
}
|
2018-08-07 06:24:03 -05:00
|
|
|
lhs = bin_expr(p, r, lhs, op_bp + 1);
|
2018-08-04 08:58:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-07 06:24:03 -05:00
|
|
|
const LHS_FIRST: TokenSet =
|
2018-08-04 08:58:22 -05:00
|
|
|
token_set_union![
|
2018-08-07 06:24:03 -05:00
|
|
|
token_set![AMP, STAR, EXCL, DOTDOT, MINUS],
|
2018-08-04 08:58:22 -05:00
|
|
|
atom::ATOM_EXPR_FIRST,
|
|
|
|
];
|
|
|
|
|
2018-08-05 10:07:06 -05:00
|
|
|
fn lhs(p: &mut Parser, r: Restrictions) -> Option<CompletedMarker> {
|
2018-08-04 09:12:00 -05:00
|
|
|
let m;
|
|
|
|
let kind = match p.current() {
|
|
|
|
// test ref_expr
|
|
|
|
// fn foo() {
|
|
|
|
// let _ = &1;
|
|
|
|
// let _ = &mut &f();
|
|
|
|
// }
|
2018-08-05 10:18:02 -05:00
|
|
|
AMP => {
|
2018-08-04 09:12:00 -05:00
|
|
|
m = p.start();
|
|
|
|
p.bump();
|
|
|
|
p.eat(MUT_KW);
|
|
|
|
REF_EXPR
|
2018-08-05 08:15:40 -05:00
|
|
|
}
|
2018-08-04 09:12:00 -05:00
|
|
|
// test deref_expr
|
|
|
|
// fn foo() {
|
|
|
|
// **&1;
|
|
|
|
// }
|
|
|
|
STAR => {
|
|
|
|
m = p.start();
|
|
|
|
p.bump();
|
|
|
|
DEREF_EXPR
|
2018-08-05 08:15:40 -05:00
|
|
|
}
|
2018-08-04 09:12:00 -05:00
|
|
|
// test not_expr
|
|
|
|
// fn foo() {
|
|
|
|
// !!true;
|
|
|
|
// }
|
|
|
|
EXCL => {
|
|
|
|
m = p.start();
|
|
|
|
p.bump();
|
|
|
|
NOT_EXPR
|
2018-08-05 08:15:40 -05:00
|
|
|
}
|
2018-08-07 06:24:03 -05:00
|
|
|
// test neg_expr
|
|
|
|
// fn foo() {
|
|
|
|
// --1;
|
|
|
|
// }
|
|
|
|
MINUS => {
|
|
|
|
m = p.start();
|
|
|
|
p.bump();
|
|
|
|
NEG_EXPR
|
|
|
|
}
|
2018-08-05 10:07:06 -05:00
|
|
|
DOTDOT => {
|
|
|
|
m = p.start();
|
|
|
|
p.bump();
|
|
|
|
expr_bp(p, r, 2);
|
|
|
|
return Some(m.complete(p, RANGE_EXPR));
|
|
|
|
}
|
2018-08-04 08:58:22 -05:00
|
|
|
_ => {
|
2018-08-04 09:12:00 -05:00
|
|
|
let lhs = atom::atom_expr(p, r)?;
|
2018-08-05 08:15:40 -05:00
|
|
|
return Some(postfix_expr(p, lhs));
|
2018-08-04 08:58:22 -05:00
|
|
|
}
|
|
|
|
};
|
2018-08-05 10:07:06 -05:00
|
|
|
expr_bp(p, r, 255);
|
2018-08-04 09:12:00 -05:00
|
|
|
Some(m.complete(p, kind))
|
2018-08-04 08:58:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn postfix_expr(p: &mut Parser, mut lhs: CompletedMarker) -> CompletedMarker {
|
|
|
|
loop {
|
|
|
|
lhs = match p.current() {
|
|
|
|
L_PAREN => call_expr(p, lhs),
|
2018-08-05 09:24:44 -05:00
|
|
|
L_BRACK => index_expr(p, lhs),
|
2018-08-05 08:15:40 -05:00
|
|
|
DOT if p.nth(1) == IDENT => if p.nth(2) == L_PAREN || p.nth(2) == COLONCOLON {
|
2018-08-04 08:58:22 -05:00
|
|
|
method_call_expr(p, lhs)
|
|
|
|
} else {
|
|
|
|
field_expr(p, lhs)
|
|
|
|
},
|
|
|
|
DOT if p.nth(1) == INT_NUMBER => field_expr(p, lhs),
|
2018-08-05 10:07:06 -05:00
|
|
|
// test postfix_range
|
|
|
|
// fn foo() { let x = 1..; }
|
|
|
|
DOTDOT if !EXPR_FIRST.contains(p.nth(1)) => {
|
|
|
|
let m = lhs.precede(p);
|
|
|
|
p.bump();
|
|
|
|
m.complete(p, RANGE_EXPR)
|
|
|
|
}
|
2018-08-04 08:58:22 -05:00
|
|
|
QUESTION => try_expr(p, lhs),
|
2018-08-06 19:55:16 -05:00
|
|
|
AS_KW => cast_expr(p, lhs),
|
2018-08-04 08:58:22 -05:00
|
|
|
_ => break,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lhs
|
|
|
|
}
|
|
|
|
|
|
|
|
// test call_expr
|
|
|
|
// fn foo() {
|
|
|
|
// let _ = f();
|
|
|
|
// let _ = f()(1)(1, 2,);
|
|
|
|
// }
|
|
|
|
fn call_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
|
|
|
|
assert!(p.at(L_PAREN));
|
|
|
|
let m = lhs.precede(p);
|
|
|
|
arg_list(p);
|
|
|
|
m.complete(p, CALL_EXPR)
|
|
|
|
}
|
|
|
|
|
2018-08-05 09:24:44 -05:00
|
|
|
// test index_expr
|
|
|
|
// fn foo() {
|
|
|
|
// x[1][2];
|
|
|
|
// }
|
|
|
|
fn index_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
|
|
|
|
assert!(p.at(L_BRACK));
|
|
|
|
let m = lhs.precede(p);
|
|
|
|
p.bump();
|
|
|
|
expr(p);
|
|
|
|
p.expect(R_BRACK);
|
|
|
|
m.complete(p, INDEX_EXPR)
|
|
|
|
}
|
|
|
|
|
2018-08-04 08:58:22 -05:00
|
|
|
// test method_call_expr
|
|
|
|
// fn foo() {
|
|
|
|
// x.foo();
|
2018-08-05 08:15:40 -05:00
|
|
|
// y.bar::<T>(1, 2,);
|
2018-08-04 08:58:22 -05:00
|
|
|
// }
|
|
|
|
fn method_call_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
|
2018-08-05 08:15:40 -05:00
|
|
|
assert!(
|
|
|
|
p.at(DOT) && p.nth(1) == IDENT
|
|
|
|
&& (p.nth(2) == L_PAREN || p.nth(2) == COLONCOLON)
|
|
|
|
);
|
2018-08-04 08:58:22 -05:00
|
|
|
let m = lhs.precede(p);
|
|
|
|
p.bump();
|
|
|
|
name_ref(p);
|
2018-08-05 08:15:40 -05:00
|
|
|
type_args::type_arg_list(p, true);
|
2018-08-04 08:58:22 -05:00
|
|
|
arg_list(p);
|
|
|
|
m.complete(p, METHOD_CALL_EXPR)
|
|
|
|
}
|
|
|
|
|
|
|
|
// test field_expr
|
|
|
|
// fn foo() {
|
|
|
|
// x.foo;
|
|
|
|
// x.0.bar;
|
|
|
|
// }
|
|
|
|
fn field_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
|
|
|
|
assert!(p.at(DOT) && (p.nth(1) == IDENT || p.nth(1) == INT_NUMBER));
|
|
|
|
let m = lhs.precede(p);
|
|
|
|
p.bump();
|
|
|
|
if p.at(IDENT) {
|
|
|
|
name_ref(p)
|
|
|
|
} else {
|
|
|
|
p.bump()
|
|
|
|
}
|
|
|
|
m.complete(p, FIELD_EXPR)
|
|
|
|
}
|
|
|
|
|
|
|
|
// test try_expr
|
|
|
|
// fn foo() {
|
|
|
|
// x?;
|
|
|
|
// }
|
|
|
|
fn try_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
|
|
|
|
assert!(p.at(QUESTION));
|
|
|
|
let m = lhs.precede(p);
|
|
|
|
p.bump();
|
|
|
|
m.complete(p, TRY_EXPR)
|
|
|
|
}
|
|
|
|
|
2018-08-06 19:55:16 -05:00
|
|
|
// test cast_expr
|
|
|
|
// fn foo() {
|
|
|
|
// 82 as i32;
|
|
|
|
// }
|
|
|
|
fn cast_expr(p: &mut Parser, lhs: CompletedMarker) -> CompletedMarker {
|
|
|
|
assert!(p.at(AS_KW));
|
|
|
|
let m = lhs.precede(p);
|
|
|
|
p.bump();
|
|
|
|
types::type_(p);
|
|
|
|
m.complete(p, CAST_EXPR)
|
|
|
|
}
|
|
|
|
|
2018-08-04 08:58:22 -05:00
|
|
|
fn arg_list(p: &mut Parser) {
|
|
|
|
assert!(p.at(L_PAREN));
|
|
|
|
let m = p.start();
|
|
|
|
p.bump();
|
|
|
|
while !p.at(R_PAREN) && !p.at(EOF) {
|
|
|
|
expr(p);
|
|
|
|
if !p.at(R_PAREN) && !p.expect(COMMA) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p.eat(R_PAREN);
|
|
|
|
m.complete(p, ARG_LIST);
|
|
|
|
}
|
|
|
|
|
|
|
|
// test path_expr
|
|
|
|
// fn foo() {
|
|
|
|
// let _ = a;
|
|
|
|
// let _ = a::b;
|
|
|
|
// let _ = ::a::<b>;
|
2018-08-05 06:16:38 -05:00
|
|
|
// let _ = format!();
|
2018-08-04 08:58:22 -05:00
|
|
|
// }
|
2018-08-04 09:12:00 -05:00
|
|
|
fn path_expr(p: &mut Parser, r: Restrictions) -> CompletedMarker {
|
2018-08-04 08:58:22 -05:00
|
|
|
assert!(paths::is_path_start(p));
|
|
|
|
let m = p.start();
|
|
|
|
paths::expr_path(p);
|
2018-08-05 06:16:38 -05:00
|
|
|
match p.current() {
|
|
|
|
L_CURLY if !r.forbid_structs => {
|
|
|
|
struct_lit(p);
|
|
|
|
m.complete(p, STRUCT_LIT)
|
|
|
|
}
|
|
|
|
EXCL => {
|
|
|
|
items::macro_call_after_excl(p);
|
|
|
|
m.complete(p, MACRO_CALL)
|
|
|
|
}
|
|
|
|
_ => m.complete(p, PATH_EXPR)
|
2018-08-04 08:58:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test struct_lit
|
|
|
|
// fn foo() {
|
|
|
|
// S {};
|
|
|
|
// S { x, y: 32, };
|
|
|
|
// S { x, y: 32, ..Default::default() };
|
|
|
|
// }
|
|
|
|
fn struct_lit(p: &mut Parser) {
|
|
|
|
assert!(p.at(L_CURLY));
|
|
|
|
p.bump();
|
|
|
|
while !p.at(EOF) && !p.at(R_CURLY) {
|
|
|
|
match p.current() {
|
|
|
|
IDENT => {
|
|
|
|
let m = p.start();
|
|
|
|
name_ref(p);
|
|
|
|
if p.eat(COLON) {
|
|
|
|
expr(p);
|
|
|
|
}
|
|
|
|
m.complete(p, STRUCT_LIT_FIELD);
|
|
|
|
}
|
|
|
|
DOTDOT => {
|
|
|
|
p.bump();
|
|
|
|
expr(p);
|
|
|
|
}
|
|
|
|
_ => p.err_and_bump("expected identifier"),
|
|
|
|
}
|
|
|
|
if !p.at(R_CURLY) {
|
|
|
|
p.expect(COMMA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p.expect(R_CURLY);
|
|
|
|
}
|
|
|
|
|
2018-08-04 09:12:00 -05:00
|
|
|
fn bin_expr(p: &mut Parser, r: Restrictions, lhs: CompletedMarker, bp: u8) -> CompletedMarker {
|
2018-08-04 08:58:22 -05:00
|
|
|
let m = lhs.precede(p);
|
2018-08-04 09:12:00 -05:00
|
|
|
expr_bp(p, r, bp);
|
2018-08-04 08:58:22 -05:00
|
|
|
m.complete(p, BIN_EXPR)
|
|
|
|
}
|