File: AulSyntaxTest.cpp

package info (click to toggle)
openclonk 8.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 169,656 kB
  • sloc: cpp: 180,484; ansic: 108,988; xml: 31,371; python: 1,223; php: 767; makefile: 148; sh: 101; javascript: 34
file content (638 lines) | stat: -rw-r--r-- 19,102 bytes parent folder | download | duplicates (5)
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
/*
 * OpenClonk, http://www.openclonk.org
 *
 * Copyright (c) 2016, The OpenClonk Team and contributors
 *
 * Distributed under the terms of the ISC license; see accompanying file
 * "COPYING" for details.
 *
 * "Clonk" is a registered trademark of Matthes Bender, used with permission.
 * See accompanying file "TRADEMARK" for details.
 *
 * To redistribute this file separately, substitute the full license texts
 * for the above references.
 */

#include "C4Include.h"

#include "ErrorHandler.h"
#include <gtest/gtest.h>

#include "AulSyntaxTestDetail.h"

#include "script/C4AulAST.h"
#include "script/C4AulParse.h"
#include "script/C4ScriptHost.h"

#include <type_traits>
#include <typeinfo>

class DummyScriptHost : public C4ScriptHost
{
public:
	explicit DummyScriptHost(const char *code)
	{
		Script.Copy(code);
	}
};

class TestableAulParse : public C4AulParse
{
public:
	template<class... T>
	TestableAulParse(T &&...t) : C4AulParse(std::forward<T>(t)...)
	{
		Shift();
	}

	// Make all of the Parse_* function public so we can test them
	using C4AulParse::Parse_ToplevelFunctionDecl;
	using C4AulParse::Parse_Statement;
	using C4AulParse::Parse_Block;
	using C4AulParse::Parse_Array;
	using C4AulParse::Parse_PropList;
	using C4AulParse::Parse_DoWhile;
	using C4AulParse::Parse_While;
	using C4AulParse::Parse_If;
	using C4AulParse::Parse_For;
	using C4AulParse::Parse_ForEach;
	using C4AulParse::Parse_Expression;
	using C4AulParse::Parse_Var;
};

class AulSyntaxTest
{};

static std::unique_ptr<::aul::ast::Stmt> ParseStatement(const char *code)
{
	DummyScriptHost host{ code };
	TestableAulParse parser{ &host };
	return parser.Parse_Statement();
}
static std::unique_ptr<::aul::ast::Expr> ParseExpression(const char *code)
{
	DummyScriptHost host{ code };
	TestableAulParse parser{ &host };
	return parser.Parse_Expression();
}
static std::unique_ptr<::aul::ast::Script> ParseScript(const char *code)
{
	DummyScriptHost host{ code };
	TestableAulParse parser{ &host };
	return parser.Parse_Script(&host);
}

TEST(AulSyntaxTest, ParseSyntaxErrors)
{
	EXPECT_THROW(ParseStatement("1"), C4AulParseError);
	EXPECT_THROW(ParseStatement("func Main() {}"), C4AulParseError);
}

using namespace ::aul::ast;
TEST(AulSyntaxTest, ParseLiterals)
{
	// Basic literals
	EXPECT_THAT(ParseExpression("1"), MatchesAst(IntLit(1)));
	EXPECT_THAT(ParseExpression("2147483647"), MatchesAst(IntLit(2147483647)));
	// While a leading + seems like it should be an operator expression,
	// we don't ever emit a no-op + operator from the parser
	EXPECT_THAT(ParseExpression("+4"), MatchesAst(IntLit(4)));
	EXPECT_THAT(ParseExpression("0xFFFFFFFF"), MatchesAst(IntLit(0xFFFFFFFF)));
	EXPECT_THAT(ParseExpression("this"), MatchesAst(ThisLit()));
	EXPECT_THAT(ParseExpression("nil"), MatchesAst(NilLit()));
	EXPECT_THAT(ParseExpression("false"), MatchesAst(BoolLit(false)));
	EXPECT_THAT(ParseExpression("true"), MatchesAst(BoolLit(true)));

	// String literals
	EXPECT_THAT(ParseExpression("\"\""), MatchesAst(StringLit("")));
	EXPECT_THAT(ParseExpression("\"[]\""), MatchesAst(StringLit("[]")));
	// can't use a raw string for this because MSVC chokes on it w/ C2017: illegal escape sequence
	//EXPECT_THAT(ParseExpression(R"("\"")"), MatchesAst(StringLit("\"")));
	EXPECT_THAT(ParseExpression("\"\\\"\""), MatchesAst(StringLit("\""))); 
	EXPECT_THAT(ParseExpression("\"\\xaF\\x41\""), MatchesAst(StringLit("\xaf\x41")));
	EXPECT_THAT(ParseExpression("\"\\142\""), MatchesAst(StringLit("\142")));
	EXPECT_THAT(ParseExpression("\"\\\\\\t\\n\""), MatchesAst(StringLit("\\\t\n")));

	// Compound literals
	{
		auto ast = ArrayLit();
		EXPECT_THAT(ParseExpression("[]"), MatchesAst(ast));
		ast.values.push_back(std::make_unique<IntLit>(1));
		EXPECT_THAT(ParseExpression("[1]"), MatchesAst(ast));
		ast.values.push_back(std::make_unique<IntLit>(2));
		ast.values.push_back(std::make_unique<IntLit>(3));
		EXPECT_THAT(ParseExpression("[1, 2, 3]"), MatchesAst(ast));
	}
	{
		auto ast = ArrayLit();
		ast.values.push_back(std::make_unique<StringLit>("Hello"));
		EXPECT_THAT(ParseExpression("[\"Hello\"]"), MatchesAst(ast));
		ast.values.push_back(std::make_unique<IntLit>(2));
		ast.values.push_back(std::make_unique<ArrayLit>());
		EXPECT_THAT(ParseExpression("[\"Hello\", 2, []]"), MatchesAst(ast));
	}
	{
		auto ast = ProplistLit();
		ast.values.emplace_back("foo", std::make_unique<StringLit>("bar"));
		EXPECT_THAT(ParseExpression(R"({foo: "bar"})"), MatchesAst(ast));
		ast.values.emplace_back("Prototype", std::make_unique<ProplistLit>());
		EXPECT_THAT(ParseExpression(R"({foo: "bar", Prototype: {}})"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseUnOps)
{
	// Basic unary operator expressions
	{
		auto ast = UnOpExpr(0,
			std::make_unique<VarExpr>("foo")
		);
		EXPECT_THAT(ParseExpression("++foo"), MatchesAst(ast));
	}
	{
		auto ast = UnOpExpr(7,
			std::make_unique<VarExpr>("foo")
		);
		EXPECT_THAT(ParseExpression("foo--"), MatchesAst(ast));
	}
	{
		auto ast = UnOpExpr(5,
			std::make_unique<IntLit>(0)
		);
		EXPECT_THAT(ParseExpression("-0"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseBinOps)
{
	// Basic binary operator expressions
	{
		auto ast = BinOpExpr(13,
			std::make_unique<IntLit>(1),
			std::make_unique<IntLit>(1)
		);
		EXPECT_THAT(ParseExpression("1 + 1"), MatchesAst(ast));
	}
	{
		// This expression doesn't make any sense semantically, but
		// syntactically it's correct
		auto ast = BinOpExpr(31,
			std::make_unique<IntLit>(1),
			std::make_unique<IntLit>(1)
		);
		EXPECT_THAT(ParseExpression("1 += 1"), MatchesAst(ast));
	}

	// Assignment operator
	{
		auto ast = AssignmentExpr(
			std::make_unique<VarExpr>("foo"),
			std::make_unique<VarExpr>("bar")
		);
		EXPECT_THAT(ParseExpression("foo = bar"), MatchesAst(ast));
	}
	{
		auto ast = AssignmentExpr(
			std::make_unique<VarExpr>("foo"),
			std::make_unique<BoolLit>(false)
		);
		EXPECT_THAT(ParseExpression("foo = false"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseOpPriority)
{
	{
		// Ensure ambiguities are resolved correctly
		auto ast = BinOpExpr(13,
			std::make_unique<UnOpExpr>(6,
				std::make_unique<VarExpr>("a")
			),
			std::make_unique<VarExpr>("b")
		);
		EXPECT_THAT(ParseExpression("a+++b"), MatchesAst(ast));
	}
	{
		auto ast = BinOpExpr(13,
			std::make_unique<VarExpr>("a"),
			std::make_unique<UnOpExpr>(0,
				std::make_unique<VarExpr>("b")
			)
		);
		EXPECT_THAT(ParseExpression("a+ ++b"), MatchesAst(ast));
	}
	{
		// This looks strange but prefix + is never emitted.
		// We should consider whether this should be allowed, however
		auto ast = BinOpExpr(13,
			std::make_unique<VarExpr>("a"),
			std::make_unique<UnOpExpr>(5,
				std::make_unique<VarExpr>("b")
			)
		);
		EXPECT_THAT(ParseExpression("a+-+b"), MatchesAst(ast));
	}
	{
		// * has higher priority than +
		auto ast = BinOpExpr(13,
			std::make_unique<VarExpr>("a"),
			std::make_unique<BinOpExpr>(10,
				std::make_unique<VarExpr>("b"),
				std::make_unique<VarExpr>("c")
			)
		);
		EXPECT_THAT(ParseExpression("a + b * c"), MatchesAst(ast));
	}
	{
		// Parentheses override operator priorities
		auto ast = BinOpExpr(10,
			std::make_unique<BinOpExpr>(13,
				std::make_unique<VarExpr>("a"),
				std::make_unique<VarExpr>("b")
			),
			std::make_unique<VarExpr>("c")
		);
		EXPECT_THAT(ParseExpression("(a + b) * c"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseSubscripts)
{
	{
		// Standard integer literal subscript
		auto ast = SubscriptExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<IntLit>(0)
		);
		EXPECT_THAT(ParseExpression("a[0]"), MatchesAst(ast));
	}
	{
		// Standard string literal subscript
		auto ast = SubscriptExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<StringLit>("b")
		);
		EXPECT_THAT(ParseExpression("a[\"b\"]"), MatchesAst(ast));
		// also accept syntactic sugar with .
		EXPECT_THAT(ParseExpression("a.b"), MatchesAst(ast));
	}
	{
		// Expression-based subscript
		auto ast = SubscriptExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<BinOpExpr>(
				13,
				std::make_unique<IntLit>(1),
				std::make_unique<VarExpr>("b")
				)
		);
		EXPECT_THAT(ParseExpression("a[1 + b]"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseSlices)
{
	{
		// Slice with no bounds
		auto ast = SliceExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<IntLit>(0),
			std::make_unique<IntLit>(std::numeric_limits<int32_t>::max())
		);
		EXPECT_THAT(ParseExpression("a[:]"), MatchesAst(ast));
	}

	{
		// Slice with lower bound
		auto ast = SliceExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<IntLit>(7),
			std::make_unique<IntLit>(std::numeric_limits<int32_t>::max())
		);
		EXPECT_THAT(ParseExpression("a[7:]"), MatchesAst(ast));
	}
	{
		// Slice with upper bound
		auto ast = SliceExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<IntLit>(0),
			std::make_unique<IntLit>(42)
		);
		EXPECT_THAT(ParseExpression("a[:42]"), MatchesAst(ast));
	}
	{
		// Slice with both bounds
		auto ast = SliceExpr(
			std::make_unique<VarExpr>("a"),
			std::make_unique<IntLit>(7),
			std::make_unique<IntLit>(42)
		);
		EXPECT_THAT(ParseExpression("a[7:42]"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseCalls)
{
	{
		// Standard call without context or args
		auto ast = CallExpr();
		ast.callee = "a";
		EXPECT_THAT(ParseExpression("a()"), MatchesAst(ast));
		// Standard call with context but no args
		ast.context = std::make_unique<VarExpr>("b");
		EXPECT_THAT(ParseExpression("b->a()"), MatchesAst(ast));
		// Fail-safe call with context but no args
		ast.safe_call = true;
		EXPECT_THAT(ParseExpression("b->~a()"), MatchesAst(ast));
		// Standard call with context and args
		ast.safe_call = false;
		ast.args.push_back(std::make_unique<BoolLit>(false));
		EXPECT_THAT(ParseExpression("b->a(false)"), MatchesAst(ast));
		// Standard call with context and args, passing unnamed parameters
		ast.append_unnamed_pars = true;
		EXPECT_THAT(ParseExpression("b->a(false, ...)"), MatchesAst(ast));
	}
	{
		// Nested call, outer fail-safe with context, inner standard without context
		auto inner = std::make_unique<CallExpr>();
		inner->callee = "a";
		inner->args.push_back(std::make_unique<IntLit>(42));
		auto ast = CallExpr();
		ast.callee = "c";
		ast.context = std::make_unique<VarExpr>("b");
		ast.args.push_back(std::move(inner));
		ast.append_unnamed_pars = true;
		EXPECT_THAT(ParseExpression("b->c(a(42), ...)"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseBlocks)
{
	{
		// Empty block
		auto ast = Block();
		EXPECT_THAT(ParseStatement("{}"), MatchesAst(ast));
	}
	{
		// Single-statement block
		auto stmt = std::make_unique<AssignmentExpr>(
			std::make_unique<VarExpr>("i"),
			std::make_unique<IntLit>(0)
			);
		auto ast = Block();
		ast.children.push_back(std::move(stmt));
		EXPECT_THAT(ParseStatement("{ i = 0; }"), MatchesAst(ast));
	}
	{
		// Nested block
		auto inner = std::make_unique<Block>();
		inner->children.push_back(
			std::make_unique<AssignmentExpr>(
				std::make_unique<VarExpr>("i"),
				std::make_unique<IntLit>(0)
			));
		auto ast = Block();
		ast.children.push_back(std::move(inner));
		ast.children.push_back(
			std::make_unique<AssignmentExpr>(
				std::make_unique<VarExpr>("i"),
				std::make_unique<IntLit>(1)
				));
		EXPECT_THAT(ParseStatement("{ { i = 0; } i = 1; }"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseForLoops)
{
	{
		// No initializer, condition, nor incrementor
		auto ast = ForLoop();
		ast.body = std::make_unique<Noop>();
		EXPECT_THAT(ParseStatement("for (;;);"), MatchesAst(ast));
	}
	{
		// Initializer without variable declaration
		auto ast = ForLoop();
		ast.body = std::make_unique<Noop>();
		ast.init = std::make_unique<AssignmentExpr>(
			std::make_unique<VarExpr>("i"),
			std::make_unique<IntLit>(0)
		);
		EXPECT_THAT(ParseStatement("for (i = 0;;);"), MatchesAst(ast));
	}
	{
		// Initializer with variable declaration
		auto decl = std::make_unique<VarDecl>();
		decl->decls.push_back(VarDecl::Var{ "i", std::make_unique<IntLit>(0) });
		auto ast = ForLoop();
		ast.body = std::make_unique<Noop>();
		ast.init = std::move(decl);
		EXPECT_THAT(ParseStatement("for (var i = 0;;);"), MatchesAst(ast));
	}
	{
		// Full for loop
		auto init = std::make_unique<VarDecl>();
		init->decls.push_back(VarDecl::Var{ "i", std::make_unique<IntLit>(0) });
		auto cond = std::make_unique<BinOpExpr>(
			16,
			std::make_unique<VarExpr>("i"),
			std::make_unique<IntLit>(10)
			);
		auto incr = std::make_unique<UnOpExpr>(
			0,
			std::make_unique<VarExpr>("i")
			);
		auto body = std::make_unique<CallExpr>();
		body->callee = "Log";
		body->args.push_back(std::make_unique<StringLit>("%d"));
		body->args.push_back(std::make_unique<VarExpr>("i"));
		auto ast = ForLoop();
		ast.init = std::move(init);
		ast.cond = std::move(cond);
		ast.incr = std::move(incr);
		ast.body = std::move(body);
		EXPECT_THAT(ParseStatement(R"(for (var i = 0; i < 10; ++i) Log("%d", i);)"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseForEachLoops)
{
	{
		// for-each without explicit variable declaration
		auto ast = RangeLoop();
		ast.var = "i";
		ast.body = std::make_unique<Noop>();
		ast.cond = std::make_unique<ArrayLit>();
		EXPECT_THAT(ParseStatement("for (i in []);"), MatchesAst(ast));
		// and with explicit variable declaration
		ast.scoped_var = true;
		EXPECT_THAT(ParseStatement("for (var i in []);"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseDoLoops)
{
	{
		// empty do loop with trivial condition
		auto ast = DoLoop();
		ast.body = std::make_unique<Noop>();
		ast.cond = std::make_unique<BoolLit>(false);
		EXPECT_THAT(ParseStatement("do ; while(false);"), MatchesAst(ast));
	}
	{
		// nested do loops with trivial condition
		auto inner = std::make_unique<DoLoop>();
		inner->body = std::make_unique<Noop>();
		inner->cond = std::make_unique<BoolLit>(false);
		auto ast = DoLoop();
		ast.body = std::move(inner);
		ast.cond = std::make_unique<BoolLit>(false);
		EXPECT_THAT(ParseStatement("do do ; while (false); while (false);"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseWhileLoops)
{
	{
		// empty while loop with trivial condition
		auto ast = WhileLoop();
		ast.cond = std::make_unique<BoolLit>(true);
		ast.body = std::make_unique<Noop>();
		EXPECT_THAT(ParseStatement("while(true);"), MatchesAst(ast));
	}
	{
		// nested while loop with trivial condition
		auto inner = std::make_unique<WhileLoop>();
		inner->cond = std::make_unique<BoolLit>(false);
		inner->body = std::make_unique<Noop>();
		auto ast = WhileLoop();
		ast.cond = std::make_unique<BoolLit>(true);
		ast.body = std::move(inner);
		EXPECT_THAT(ParseStatement("while(true) while(false);"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseIfs)
{
	{
		// trivial condition, no else branch
		auto ast = If();
		ast.cond = std::make_unique<BoolLit>(false);
		ast.iftrue = std::make_unique<Noop>();
		EXPECT_THAT(ParseStatement("if(false);"), MatchesAst(ast));
		// trivial condition, with else branch
		ast.iffalse = std::make_unique<Noop>();
		EXPECT_THAT(ParseStatement("if(false); else;"), MatchesAst(ast));
	}
	{
		// trivial condition, nested ifs. else binds to the inner if.
		auto inner = std::make_unique<If>();
		inner->cond = std::make_unique<BoolLit>(false);
		inner->iftrue = std::make_unique<AssignmentExpr>(
			std::make_unique<VarExpr>("i"),
			std::make_unique<IntLit>(0)
			);
		inner->iffalse = std::make_unique<Noop>();
		auto ast = If();
		ast.cond = std::make_unique<NilLit>();
		ast.iftrue = std::move(inner);
		EXPECT_THAT(ParseStatement("if(nil) if(false) i = 0; else;"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseFunctionDecls)
{
	{
		// local function, no parameters
		auto func = std::make_unique<FunctionDecl>("f");
		func->body = std::make_unique<Block>();
		auto ast = Script();
		ast.declarations.push_back(std::move(func));
		EXPECT_THAT(ParseScript("func f() {}"), MatchesAst(ast));
	}
	{
		// global function, unnamed parameters only
		auto func = std::make_unique<FunctionDecl>("f");
		func->body = std::make_unique<Block>();
		func->has_unnamed_params = true;
		func->is_global = true;
		auto ast = Script();
		ast.declarations.push_back(std::move(func));
		EXPECT_THAT(ParseScript("global func f(...) {}"), MatchesAst(ast));
	}
	{
		// local function, named parameters only
		auto func = std::make_unique<FunctionDecl>("f");
		func->body = std::make_unique<Block>();
		func->params.push_back(Function::Parameter{ "a", C4V_Array });
		func->params.push_back(Function::Parameter{ "b", C4V_Int });
		func->params.push_back(Function::Parameter{ "c", C4V_Any });
		auto ast = Script();
		ast.declarations.push_back(std::move(func));
		EXPECT_THAT(ParseScript("func f(array a, int b, c) {}"), MatchesAst(ast));
	}
	{
		// local function, named and unnamed parameters
		auto func = std::make_unique<FunctionDecl>("f");
		func->body = std::make_unique<Block>();
		func->params.push_back(Function::Parameter{ "a", C4V_Array });
		func->has_unnamed_params = true;
		auto ast = Script();
		ast.declarations.push_back(std::move(func));
		EXPECT_THAT(ParseScript("func f(array a, ...) {}"), MatchesAst(ast));
	}
}

TEST(AulSyntaxTest, ParseVarDecls)
{
	{
		// function-scoped variables, no initializer
		auto ast = VarDecl();
		ast.scope = VarDecl::Scope::Func;
		ast.decls.push_back(VarDecl::Var{ "a", nullptr });
		EXPECT_THAT(ParseStatement("var a;"), MatchesAst(ast));
		ast.decls.push_back(VarDecl::Var{ "b", nullptr });
		EXPECT_THAT(ParseStatement("var a, b;"), MatchesAst(ast));
	}
	{
		// function-scoped variables, partially initialized
		auto ast = VarDecl();
		ast.scope = VarDecl::Scope::Func;
		ast.decls.push_back(VarDecl::Var{ "a", std::make_unique<IntLit>(1) });
		EXPECT_THAT(ParseStatement("var a = 1;"), MatchesAst(ast));
		ast.decls.push_back(VarDecl::Var{ "b", nullptr });
		EXPECT_THAT(ParseStatement("var a = 1, b;"), MatchesAst(ast));
	}
	{
		// object-scoped variables, partially initialized
		auto ast = VarDecl();
		ast.scope = VarDecl::Scope::Object;
		ast.decls.push_back(VarDecl::Var{ "a", std::make_unique<IntLit>(1) });
		EXPECT_THAT(ParseStatement("local a = 1;"), MatchesAst(ast));
		ast.decls.push_back(VarDecl::Var{ "b", nullptr });
		EXPECT_THAT(ParseStatement("local a = 1, b;"), MatchesAst(ast));
	}
	{
		// global variables, partially initialized
		auto var = std::make_unique<VarDecl>();
		var->scope = VarDecl::Scope::Global;
		var->decls.push_back(VarDecl::Var{ "a", std::make_unique<IntLit>(1) });
		var->decls.push_back(VarDecl::Var{ "b", nullptr });
		auto ast = Script();
		ast.declarations.push_back(std::move(var));
		EXPECT_THAT(ParseScript("static a = 1, b;"), MatchesAst(ast));
	}
	{
		// global constant, initialized
		auto var = std::make_unique<VarDecl>();
		var->scope = VarDecl::Scope::Global;
		var->constant = true;
		var->decls.push_back(VarDecl::Var{ "a", std::make_unique<IntLit>(1) });
		auto call = std::make_unique<CallExpr>();
		call->callee = "f";
		var->decls.push_back(VarDecl::Var{ "b", std::move(call) });
		auto ast = Script();
		ast.declarations.push_back(std::move(var));
		EXPECT_THAT(ParseScript("static const a = 1, b = f();"), MatchesAst(ast));
	}
}