Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a64400062e83a727e8c4bb7629bbdcae06cbe9ca (plain) (blame)
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
/**
 * Test non-indexed feature assignment expressions
 **/
active class Expressions_Assignment_Feature {

	private class C {

		public x: Integer;
		public y: Integer[0..*] sequence;
		@Create
		public C();
		@Destroy
		public destroy();

	}

	private datatype D {
		public x: Integer;
		public y: Integer[0..*] sequence;
	}

	private assoc A {
		public c: C;
		public n: Integer;
	}

	private assoc B {
		public d: D;
		public m: Integer;
	}

	private x: Integer;
	private y: Integer[0..*] sequence;
	public test(out c: C, out d: D, out n: Integer, out m: Integer,
		out self: Expressions_Assignment_Feature);
	@Create
	public Expressions_Assignment_Feature();
	@Destroy
	public destroy();

} do 'Expressions_Assignment_Feature$behavior$1'

Back to the top