-
Notifications
You must be signed in to change notification settings - Fork 50
/
types.rs
1238 lines (1074 loc) · 34.8 KB
/
types.rs
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use educe::Educe;
use std::{
fmt::Display,
hash::{Hash, Hasher},
str::FromStr,
};
use ark_ff::{Field, Zero};
use serde::{Deserialize, Serialize};
use crate::{
cli::packages::UserRepo,
constants::Span,
error::{ErrorKind, Result},
lexer::{Keyword, Token, TokenKind, Tokens},
stdlib::BUILTIN_FN_NAMES,
syntax::is_type,
};
use super::{CustomType, Expr, ExprKind, ParserCtx, StructDef};
pub fn parse_type_declaration(
ctx: &mut ParserCtx,
tokens: &mut Tokens,
ident: Ident,
) -> Result<Expr> {
if !is_type(&ident.value) {
return Err(ctx.error(
ErrorKind::UnexpectedError(
"this looks like a type declaration but not on a type (types start with an uppercase)",
), ident.span));
}
let mut span = ident.span;
// Thing { x: 1, y: 2 }
// ^
tokens.bump(ctx);
let mut fields = vec![];
// Thing { x: 1, y: 2 }
// ^^^^^^^^^^^^
loop {
// Thing { x: 1, y: 2 }
// ^
if let Some(Token {
kind: TokenKind::RightCurlyBracket,
..
}) = tokens.peek()
{
tokens.bump(ctx);
break;
};
// Thing { x: 1, y: 2 }
// ^
let field_name = Ident::parse(ctx, tokens)?;
// Thing { x: 1, y: 2 }
// ^
tokens.bump_expected(ctx, TokenKind::Colon)?;
// Thing { x: 1, y: 2 }
// ^
let field_value = Expr::parse(ctx, tokens)?;
span = span.merge_with(field_value.span);
fields.push((field_name, field_value));
// Thing { x: 1, y: 2 }
// ^ ^
match tokens.bump_err(ctx, ErrorKind::InvalidEndOfLine)? {
Token {
kind: TokenKind::Comma,
..
} => (),
Token {
kind: TokenKind::RightCurlyBracket,
..
} => break,
_ => return Err(ctx.error(ErrorKind::InvalidEndOfLine, ctx.last_span())),
};
}
Ok(Expr::new(
ctx,
ExprKind::CustomTypeDeclaration {
custom: CustomType {
module: ModulePath::Local,
name: ident.value,
span: ident.span,
},
fields,
},
span,
))
}
pub fn parse_fn_call_args(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<(Vec<Expr>, Span)> {
let start = tokens.bump(ctx).expect("parser error: parse_fn_call_args"); // (
let mut span = start.span;
let mut args = vec![];
loop {
let pp = tokens.peek();
match pp {
Some(x) => match x.kind {
// ,
TokenKind::Comma => {
tokens.bump(ctx);
}
// )
TokenKind::RightParen => {
let end = tokens.bump(ctx).unwrap();
span = span.merge_with(end.span);
break;
}
// an argument (as expression)
_ => {
let arg = Expr::parse(ctx, tokens)?;
args.push(arg);
}
},
None => {
return Err(ctx.error(
ErrorKind::InvalidFnCall("unexpected end of function call"),
ctx.last_span(),
))
}
}
}
Ok((args, span))
}
//~
//~ ## Type
//~
//~ Backus–Naur Form (BNF) grammar:
//~
//~ type ::=
//~ | /[A-Z] (A-Za-z0-9)*/
//~ | "[" type ";" numeric "]"
//~
//~ numeric ::= /[0-9]+/
//~
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Ty {
pub kind: TyKind,
pub span: Span,
}
/// The module preceding structs, functions, or variables.
#[derive(Default, Debug, Clone, Serialize, Deserialize, Hash, PartialEq, Eq)]
pub enum ModulePath {
#[default]
/// This is a local type, not imported from another module.
Local,
/// This is a type imported from another module.
Alias(Ident),
/// This is a type imported from another module,
/// fully-qualified (as `user::repo`) thanks to the name resolution pass of the compiler.
Absolute(UserRepo),
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub enum TyKind {
/// The main primitive type. 'Nuf said.
// TODO: Field { constant: bool },
Field,
/// Custom / user-defined types
Custom { module: ModulePath, name: String },
/// This could be the same as Field, but we use this to also track the fact that it's a constant.
// TODO: get rid of this type tho no?
BigInt,
/// An array of a fixed size.
Array(Box<TyKind>, u32),
/// A boolean (`true` or `false`).
Bool,
// Tuple(Vec<TyKind>),
// Bool,
// U8,
// U16,
// U32,
// U64,
}
impl TyKind {
pub fn match_expected(&self, expected: &TyKind) -> bool {
match (self, expected) {
(TyKind::BigInt, TyKind::Field) => true,
(TyKind::Array(lhs, lhs_size), TyKind::Array(rhs, rhs_size)) => {
lhs_size == rhs_size && lhs.match_expected(rhs)
}
(
TyKind::Custom { module, name },
TyKind::Custom {
module: expected_module,
name: expected_name,
},
) => module == expected_module && name == expected_name,
(x, y) if x == y => true,
_ => false,
}
}
pub fn same_as(&self, other: &TyKind) -> bool {
match (self, other) {
(TyKind::BigInt, TyKind::Field) | (TyKind::Field, TyKind::BigInt) => true,
(TyKind::Array(lhs, lhs_size), TyKind::Array(rhs, rhs_size)) => {
lhs_size == rhs_size && lhs.match_expected(rhs)
}
(
TyKind::Custom { module, name },
TyKind::Custom {
module: expected_module,
name: expected_name,
},
) => module == expected_module && name == expected_name,
(x, y) if x == y => true,
_ => false,
}
}
}
impl Display for TyKind {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
TyKind::Custom { module, name } => match module {
ModulePath::Absolute(user_repo) => write!(
f,
"a `{module}::{submodule}::{name}` struct",
name = name,
module = user_repo.user,
submodule = user_repo.repo
),
ModulePath::Alias(module) => write!(
f,
"a `{module}::{name}` struct",
name = name,
module = module.value
),
ModulePath::Local => write!(f, "a `{}` struct", name),
},
TyKind::Field => write!(f, "Field"),
TyKind::BigInt => write!(f, "BigInt"),
TyKind::Array(ty, size) => write!(f, "[{}; {}]", ty, size),
TyKind::Bool => write!(f, "Bool"),
}
}
}
impl Ty {
pub fn reserved_types(module: ModulePath, name: Ident) -> TyKind {
match name.value.as_ref() {
"Field" | "Bool" if !matches!(module, ModulePath::Local) => {
panic!("reserved types cannot be in a module (TODO: better error)")
}
"Field" => TyKind::Field,
"Bool" => TyKind::Bool,
_ => TyKind::Custom {
module,
name: name.value,
},
}
}
pub fn parse(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Self> {
let token = tokens.bump_err(ctx, ErrorKind::MissingType)?;
match token.kind {
// module::Type or Type
// ^^^^^^^^^^^^ ^^^^
TokenKind::Identifier(ty_name) => {
let maybe_module = Ident::new(ty_name.clone(), token.span);
let (module, name, _span) = if is_type(&ty_name) {
// Type
// ^^^^
(ModulePath::Local, maybe_module, token.span)
} else {
// module::Type
// ^^
tokens.bump_expected(ctx, TokenKind::DoubleColon)?;
// module::Type
// ^^^^
let (name, span) = match tokens.bump(ctx) {
Some(Token {
kind: TokenKind::Identifier(name),
span,
}) => (name, span),
_ => return Err(ctx.error(ErrorKind::MissingType, ctx.last_span())),
};
let name = Ident::new(name, span);
let span = token.span.merge_with(span);
(ModulePath::Alias(maybe_module), name, span)
};
let ty_kind = Self::reserved_types(module, name);
Ok(Self {
kind: ty_kind,
span: token.span,
})
}
// array
// [type; size]
// ^
TokenKind::LeftBracket => {
let span = token.span;
// [type; size]
// ^
let ty = Ty::parse(ctx, tokens)?;
// [type; size]
// ^
tokens.bump_expected(ctx, TokenKind::SemiColon)?;
// [type; size]
// ^
let siz = tokens.bump_err(ctx, ErrorKind::InvalidToken)?;
let siz: u32 = match siz.kind {
TokenKind::BigUInt(b) => b
.try_into()
.map_err(|_e| ctx.error(ErrorKind::InvalidArraySize, siz.span))?,
_ => {
return Err(ctx.error(
ErrorKind::ExpectedToken(TokenKind::BigUInt(
num_bigint::BigUint::zero(),
)),
siz.span,
));
}
};
// [type; size]
// ^
let right_paren = tokens.bump_expected(ctx, TokenKind::RightBracket)?;
let span = span.merge_with(right_paren.span);
Ok(Ty {
kind: TyKind::Array(Box::new(ty.kind), siz),
span,
})
}
// unrecognized
_ => Err(ctx.error(ErrorKind::InvalidType, token.span)),
}
}
}
//~
//~ ## Functions
//~
//~ Backus–Naur Form (BNF) grammar:
//~
//~ fn_sig ::= ident "(" param { "," param } ")" [ return_val ]
//~ return_val ::= "->" type
//~ param ::= { "pub" } ident ":" type
//~
impl FnSig {
pub fn parse(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Self> {
let (name, kind) = FuncOrMethod::parse(ctx, tokens)?;
let arguments = FunctionDef::parse_args(ctx, tokens, &kind)?;
let return_type = FunctionDef::parse_fn_return_type(ctx, tokens)?;
Ok(Self {
kind,
name,
arguments,
return_type,
})
}
}
/// Any kind of text that can represent a type, a variable, a function name, etc.
#[derive(Debug, Default, Clone, Eq, Serialize, Deserialize, Educe)]
#[educe(Hash, PartialEq)]
pub struct Ident {
pub value: String,
#[educe(Hash(ignore))]
#[educe(PartialEq(ignore))]
pub span: Span,
}
impl Ident {
pub fn new(value: String, span: Span) -> Self {
Self { value, span }
}
pub fn parse(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Self> {
let token = tokens.bump_err(ctx, ErrorKind::MissingToken)?;
match token.kind {
TokenKind::Identifier(ident) => Ok(Self {
value: ident,
span: token.span,
}),
_ => Err(ctx.error(
ErrorKind::ExpectedToken(TokenKind::Identifier("".to_string())),
token.span,
)),
}
}
}
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum AttributeKind {
Pub,
Const,
}
impl AttributeKind {
pub fn is_public(&self) -> bool {
matches!(self, Self::Pub)
}
pub fn is_constant(&self) -> bool {
matches!(self, Self::Const)
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Attribute {
pub kind: AttributeKind,
pub span: Span,
}
impl Attribute {
pub fn is_public(&self) -> bool {
self.kind.is_public()
}
pub fn is_constant(&self) -> bool {
self.kind.is_constant()
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FunctionDef {
pub sig: FnSig,
pub body: Vec<Stmt>,
pub span: Span,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum FuncOrMethod {
/// Function.
Function(
/// Set during name resolution.
ModulePath,
),
/// Method defined on a custom type.
Method(CustomType),
}
impl Default for FuncOrMethod {
fn default() -> Self {
unreachable!()
}
}
// TODO: remove default here?
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct FnSig {
pub kind: FuncOrMethod,
pub name: Ident,
/// (pub, ident, type)
pub arguments: Vec<FnArg>,
pub return_type: Option<Ty>,
}
pub struct Method {
pub sig: MethodSig,
pub body: Vec<Stmt>,
pub span: Span,
}
pub struct MethodSig {
pub self_name: CustomType,
pub name: Ident,
/// (pub, ident, type)
pub arguments: Vec<FnArg>,
pub return_type: Option<Ty>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FnArg {
pub name: Ident,
pub typ: Ty,
pub attribute: Option<Attribute>,
pub span: Span,
}
impl FnArg {
pub fn is_public(&self) -> bool {
self.attribute
.as_ref()
.map(|attr| attr.is_public())
.unwrap_or(false)
}
pub fn is_constant(&self) -> bool {
self.attribute
.as_ref()
.map(|attr| attr.is_constant())
.unwrap_or(false)
}
}
impl FuncOrMethod {
pub fn parse(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<(Ident, Self)> {
// fn House.verify( or fn verify(
// ^^^^^ ^^^^^
let maybe_self_name = tokens.bump_ident(
ctx,
ErrorKind::InvalidFunctionSignature("expected function name"),
)?;
// fn House.verify(
// ^^^^^
if is_type(&maybe_self_name.value) {
let struct_name = maybe_self_name;
// fn House.verify(
// ^
tokens.bump_expected(ctx, TokenKind::Dot)?;
// fn House.verify(
// ^^^^^^
let name = tokens.bump_ident(
ctx,
ErrorKind::InvalidFunctionSignature("expected function name"),
)?;
Ok((
name,
FuncOrMethod::Method(CustomType {
module: ModulePath::Local,
name: struct_name.value,
span: struct_name.span,
}),
))
} else {
// fn verify(
// ^^^^^^
// check that it is not shadowing a builtin
let fn_name = maybe_self_name;
Ok((fn_name, FuncOrMethod::Function(ModulePath::Local)))
}
}
}
impl FunctionDef {
pub fn is_main(&self) -> bool {
self.sig.name.value == "main"
}
pub fn parse_args(
ctx: &mut ParserCtx,
tokens: &mut Tokens,
fn_kind: &FuncOrMethod,
) -> Result<Vec<FnArg>> {
// (pub arg1: type1, arg2: type2)
// ^
tokens.bump_expected(ctx, TokenKind::LeftParen)?;
// (pub arg1: type1, arg2: type2)
// ^
let mut args = vec![];
loop {
// `pub arg1: type1`
// ^ ^
let token = tokens.bump_err(
ctx,
ErrorKind::InvalidFunctionSignature("expected function arguments"),
)?;
let (attribute, arg_name) = match token.kind {
TokenKind::RightParen => break,
// public input
TokenKind::Keyword(Keyword::Pub) => {
let arg_name = Ident::parse(ctx, tokens)?;
(
Some(Attribute {
kind: AttributeKind::Pub,
span: token.span,
}),
arg_name,
)
}
// constant input
TokenKind::Keyword(Keyword::Const) => {
let arg_name = Ident::parse(ctx, tokens)?;
(
Some(Attribute {
kind: AttributeKind::Const,
span: token.span,
}),
arg_name,
)
}
// private input
TokenKind::Identifier(name) => (
None,
Ident {
value: name,
span: token.span,
},
),
_ => {
return Err(ctx.error(
ErrorKind::InvalidFunctionSignature("expected identifier"),
token.span,
));
}
};
// self takes no value
let arg_typ = if arg_name.value == "self" {
let self_name = match fn_kind {
FuncOrMethod::Function(_) => {
return Err(ctx.error(
ErrorKind::InvalidFunctionSignature(
"the `self` argument is only allowed in methods, not functions",
),
arg_name.span,
));
}
FuncOrMethod::Method(self_name) => self_name,
};
if !args.is_empty() {
return Err(ctx.error(
ErrorKind::InvalidFunctionSignature("`self` must be the first argument"),
arg_name.span,
));
}
Ty {
kind: TyKind::Custom {
module: ModulePath::Local,
name: self_name.name.clone(),
},
span: self_name.span,
}
} else {
// :
tokens.bump_expected(ctx, TokenKind::Colon)?;
// type
Ty::parse(ctx, tokens)?
};
// , or )
let separator = tokens.bump_err(
ctx,
ErrorKind::InvalidFunctionSignature("expected end of function or other argument"),
)?;
let span = if let Some(attr) = &attribute {
if &arg_name.value == "self" {
return Err(ctx.error(ErrorKind::SelfHasAttribute, arg_name.span));
} else {
attr.span.merge_with(arg_typ.span)
}
} else {
if &arg_name.value == "self" {
arg_name.span
} else {
arg_name.span.merge_with(arg_typ.span)
}
};
let arg = FnArg {
name: arg_name,
typ: arg_typ,
attribute,
span,
};
args.push(arg);
match separator.kind {
// (pub arg1: type1, arg2: type2)
// ^
TokenKind::Comma => (),
// (pub arg1: type1, arg2: type2)
// ^
TokenKind::RightParen => break,
_ => {
return Err(ctx.error(
ErrorKind::InvalidFunctionSignature(
"expected end of function or other argument",
),
separator.span,
));
}
}
}
Ok(args)
}
pub fn parse_fn_return_type(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Option<Ty>> {
match tokens.peek() {
Some(Token {
kind: TokenKind::RightArrow,
..
}) => {
tokens.bump(ctx);
let return_type = Ty::parse(ctx, tokens)?;
Ok(Some(return_type))
}
_ => Ok(None),
}
}
pub fn parse_fn_body(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Vec<Stmt>> {
let mut body = vec![];
tokens.bump_expected(ctx, TokenKind::LeftCurlyBracket)?;
loop {
// end of the function
let next_token = tokens.peek();
if matches!(
next_token,
Some(Token {
kind: TokenKind::RightCurlyBracket,
..
})
) {
tokens.bump(ctx);
break;
}
// parse next statement
let statement = Stmt::parse(ctx, tokens)?;
body.push(statement);
}
Ok(body)
}
/// Parse a function, without the `fn` keyword.
pub fn parse(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Self> {
// ghetto way of getting the span of the function: get the span of the first token (name), then try to get the span of the last token
let mut span = tokens
.peek()
.ok_or_else(|| {
ctx.error(
ErrorKind::InvalidFunctionSignature("expected function name"),
ctx.last_span(),
)
})?
.span;
// parse signature
let sig = FnSig::parse(ctx, tokens)?;
// make sure that it doesn't shadow a builtin
if BUILTIN_FN_NAMES.contains(&sig.name.value) {
return Err(ctx.error(
ErrorKind::ShadowingBuiltIn(sig.name.value.clone()),
sig.name.span,
));
}
// parse body
let body = Self::parse_fn_body(ctx, tokens)?;
// here's the last token, that is if the function is not empty (maybe we should disallow empty functions?)
if let Some(t) = body.last() {
span = span.merge_with(t.span);
} else {
return Err(ctx.error(
ErrorKind::InvalidFunctionSignature("expected function body"),
ctx.last_span(),
));
}
let func = Self { sig, body, span };
Ok(func)
}
}
// TODO: enforce snake_case?
pub fn is_valid_fn_name(name: &str) -> bool {
if let Some(first_char) = name.chars().next() {
// first character is not a number
(first_char.is_alphabetic() || first_char == '_')
// first character is lowercase
&& first_char.is_lowercase()
// all other characters are alphanumeric or underscore
&& name.chars().all(|c| c.is_alphanumeric() || c == '_')
} else {
false
}
}
// TODO: enforce CamelCase?
pub fn is_valid_fn_type(name: &str) -> bool {
if let Some(first_char) = name.chars().next() {
// first character is not a number or alpha
first_char.is_alphabetic()
// first character is uppercase
&& first_char.is_uppercase()
// all other characters are alphanumeric or underscore
&& name.chars().all(|c| c.is_alphanumeric() || c == '_')
} else {
false
}
}
//
// ## Statements
//
//~ statement ::=
//~ | "let" ident "=" expr ";"
//~ | expr ";"
//~ | "return" expr ";"
//~
//~ where an expression is allowed only if it is a function call that does not return a value.
//~
//~ Actually currently we don't implement it this way.
//~ We don't expect an expression to be a statement,
//~ but a well defined function call:
//~
//~ fn_call ::= path "(" [ expr { "," expr } ] ")"
//~ path ::= ident { "::" ident }
//~
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Range {
pub start: u32,
pub end: u32,
pub span: Span,
}
impl Range {
pub fn range(&self) -> std::ops::Range<u32> {
self.start..self.end
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Stmt {
pub kind: StmtKind,
pub span: Span,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum StmtKind {
Assign {
mutable: bool,
lhs: Ident,
rhs: Box<Expr>,
},
Expr(Box<Expr>),
Return(Box<Expr>),
Comment(String),
// `for var in 0..10 { <body> }`
ForLoop {
var: Ident,
range: Range,
body: Vec<Stmt>,
},
}
impl Stmt {
/// Returns a list of statement parsed until seeing the end of a block (`}`).
pub fn parse(ctx: &mut ParserCtx, tokens: &mut Tokens) -> Result<Self> {
match tokens.peek() {
None => Err(ctx.error(ErrorKind::InvalidStatement, ctx.last_span())),
// assignment
Some(Token {
kind: TokenKind::Keyword(Keyword::Let),
span,
}) => {
let mut span = span;
tokens.bump(ctx);
// let mut x = 5;
// ^^^
let mutable = if matches!(
tokens.peek(),
Some(Token {
kind: TokenKind::Keyword(Keyword::Mut),
..
})
) {
tokens.bump(ctx);
true
} else {
false
};
// let mut x = 5;
// ^
let lhs = Ident::parse(ctx, tokens)?;
// let mut x = 5;
// ^
tokens.bump_expected(ctx, TokenKind::Equal)?;
// let mut x = 5;
// ^
let rhs = Box::new(Expr::parse(ctx, tokens)?);
span = span.merge_with(rhs.span);
// let mut x = 5;
// ^
tokens.bump_expected(ctx, TokenKind::SemiColon)?;
//
Ok(Stmt {
kind: StmtKind::Assign { mutable, lhs, rhs },
span,
})
}
// for loop
Some(Token {
kind: TokenKind::Keyword(Keyword::For),
span,
}) => {
tokens.bump(ctx);
// for i in 0..5 { ... }
// ^
let var = Ident::parse(ctx, tokens)?;
// for i in 0..5 { ... }
// ^^
tokens.bump_expected(ctx, TokenKind::Keyword(Keyword::In))?;
// for i in 0..5 { ... }
// ^
let (start, start_span) = match tokens.bump(ctx) {
Some(Token {
kind: TokenKind::BigUInt(n),
span,
}) => {
let start: u32 = n
.try_into()
.map_err(|_e| ctx.error(ErrorKind::InvalidRangeSize, span))?;
(start, span)
}
_ => {
return Err(ctx.error(
ErrorKind::ExpectedToken(TokenKind::BigUInt(
num_bigint::BigUint::zero(),
)),
ctx.last_span(),
))
}
};
// for i in 0..5 { ... }
// ^^
tokens.bump_expected(ctx, TokenKind::DoubleDot)?;
// for i in 0..5 { ... }
// ^
let (end, end_span) = match tokens.bump(ctx) {
Some(Token {
kind: TokenKind::BigUInt(n),
span,
}) => {
let end: u32 = n
.try_into()
.map_err(|_e| ctx.error(ErrorKind::InvalidRangeSize, span))?;