summaryrefslogtreecommitdiff
path: root/tests/g.stage
blob: 05ca5ad87d134dc3d63e95d6310cd68d2e66f48a (plain)
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
situation <<start>>
{
	setup
	{
		display("pre start");
		a();
		display("post start");
	}
	enter
	{
		display("Start::Enter");
	}
}

function a()
{
	display("pre a");
	b();
	display("post a");
}

function b()
{
	display("pre b");
	goto( <<2>> );
	display("post b");
}

situation <<2>>
{
	enter
	{
		display("pre 2");
	}
}