1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
use crate::toolshed::{ Arena, };
use crate::version::ECMAScriptVersion;
use crate::error::{ ErrorKind, Error, };
use crate::lexer::Lexer;
use crate::lexer::token::{ Token, LiteralString, LiteralRegularExpression, LiteralTemplate, };
use crate::lexer::punctuator::PunctuatorKind;
use crate::lexer::keyword::KeywordKind;
use crate::lexer::LexerErrorKind;
use crate::parser::parser::Parser;
use crate::parser::parser::ParserErrorKind::{ self, * };
use crate::ast::numberic::{ Numberic, Float, };
use crate::ast::statement::{
Statement,
EmptyStatement, DebuggerStatement,
BlockStatement,
VariableStatement, LexicalDeclarationKind, LexicalBinding,
};
use crate::ast::expression::{
Expression, LiteralTemplateExpression,
};
impl<'ast> Parser<'ast> {
pub fn parse_statement(&mut self, token: Token<'ast>) -> Result<Statement<'ast>, Error> {
match token {
Token::Punctuator(punct) => {
match punct.kind {
PunctuatorKind::Semicolon => {
let loc = punct.loc;
let span = punct.span;
let item = EmptyStatement { loc, span };
return Ok(Statement::Empty(self.alloc(item)))
},
PunctuatorKind::LBrace => {
let item = self.parse_block_statement(token)?;
return Ok(Statement::Block(self.alloc(item)));
},
_ => {
unimplemented!()
}
}
},
Token::Keyword(kw) => {
match kw.kind {
KeywordKind::Async => {
let token2 = self.token3()?;
match token2 {
Token::LineTerminator => {
return Err(self.unexpected_token(token2));
},
Token::Keyword(kw) => {
match kw.kind {
KeywordKind::Function => {
let mut func_decl = self.parse_function_declaration(token2)?;
func_decl.is_async = true;
return Ok(Statement::Function(self.alloc(func_decl)));
},
_ => {
return Err(self.unexpected_token(token2));
}
}
},
_ => {
return Err(self.unexpected_token(token2));
}
}
},
KeywordKind::Class => {
let class_stmt = self.parse_class_declaration(token)?;
return Ok(Statement::Class(self.alloc(class_stmt)));
},
KeywordKind::Function => {
let func_decl = self.parse_function_declaration(token)?;
return Ok(Statement::Function(self.alloc(func_decl)));
},
KeywordKind::Debugger => {
let loc = kw.loc;
let span = kw.span;
let item = DebuggerStatement { loc, span };
return Ok(Statement::Debugger(self.alloc(item)))
},
_ => {
unimplemented!()
}
}
},
_ => {
unimplemented!()
}
}
}
fn parse_lexical_binding(&mut self) -> Result<Vec<LexicalBinding>, Error> {
unimplemented!()
}
pub fn parse_variable_statement(&mut self, token: Token<'ast>) -> Result<Statement<'ast>, Error> {
unimplemented!()
}
pub fn parse_async_statement(&mut self, token: Token<'ast>) -> Result<Statement<'ast>, Error> {
unimplemented!()
}
pub fn parse_block_statement(&mut self, token: Token<'ast>) -> Result<BlockStatement<'ast>, Error> {
let (mut loc, mut span) = match token {
Token::Punctuator(punct) => {
assert_eq!(punct.kind, PunctuatorKind::LBrace);
(punct.loc, punct.span)
},
_ => unreachable!(),
};
let mut body: Vec<Statement<'ast>> = vec![];
loop {
let token = self.token4()?;
match token {
Token::Punctuator(punct) => {
match punct.kind {
PunctuatorKind::RBrace => {
loc.end = punct.loc.end;
span.end = punct.span.end;
break;
},
_ => {
}
}
},
_ => {
}
}
let stmt = self.process(token)?;
body.push(stmt);
}
let item = BlockStatement { loc, span, body: self.arena.alloc_vec(body), };
Ok(item)
}
}