96 |
end |
end |
97 |
|
|
98 |
is_match_list_extension_disabled: BOOLEAN |
is_match_list_extension_disabled: BOOLEAN |
99 |
-- Is match list extension disabled? |
-- Is match list extension disabled? |
100 |
|
|
101 |
feature -- Roundtrip |
feature -- Roundtrip |
102 |
|
|
1305 |
end |
end |
1306 |
end |
end |
1307 |
|
|
1308 |
new_formal_as (n: ID_AS; is_ref, is_exp: BOOLEAN; r_as: KEYWORD_AS): FORMAL_AS is |
new_formal_as (n: ID_AS; is_ref, is_exp, is_monomorph: BOOLEAN; r_as: KEYWORD_AS): FORMAL_AS is |
1309 |
-- New FORMAL AST node |
-- New FORMAL AST node |
1310 |
do |
do |
1311 |
if n /= Void then |
if n /= Void then |
1312 |
create Result.initialize (n, is_ref, is_exp, r_as) |
create Result.initialize (n, is_ref, is_exp, is_monomorph, r_as) |
1313 |
end |
end |
1314 |
end |
end |
1315 |
|
|