1 |
class |
2 |
TEST |
3 |
|
4 |
create |
5 |
make, another_simple_make, make_from_reference, make_from_expanded, make_complex |
6 |
|
7 |
feature -- Initialization |
8 |
|
9 |
make is |
10 |
-- A creation procedure |
11 |
do |
12 |
|
13 |
end |
14 |
|
15 |
another_simple_make is |
16 |
-- Another creation procedure |
17 |
do |
18 |
|
19 |
end |
20 |
|
21 |
|
22 |
make_from_reference (a: ANY) is |
23 |
-- Creation procedure which covers reference types. |
24 |
do |
25 |
|
26 |
end |
27 |
|
28 |
|
29 |
make_from_expanded (i: INTEGER) is |
30 |
-- Creation procedure which covers expanded types. |
31 |
do |
32 |
|
33 |
end |
34 |
|
35 |
make_complex (i1, i2: INTEGER; a1, a2: ANY) |
36 |
-- Creation procedure which covers a morge complex argument list |
37 |
do |
38 |
|
39 |
end |
40 |
|
41 |
foo is |
42 |
-- bar |
43 |
do |
44 |
|
45 |
end |
46 |
|
47 |
|
48 |
end -- class TEST |