1 /* valaswitchsection.vala
3 * Copyright (C) 2006-2010 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 * Jürg Billeter <j@bitron.ch>
26 * Represents a switch section in the source code.
28 public class Vala
.SwitchSection
: Block
{
29 private List
<SwitchLabel
> labels
= new ArrayList
<SwitchLabel
> ();
32 * Creates a new switch section.
34 * @param source_reference reference to source code
35 * @return newly created switch section
37 public SwitchSection (SourceReference? source_reference
) {
38 base (source_reference
);
42 * Appends the specified label to the list of switch labels.
44 * @param label a switch label
46 public void add_label (SwitchLabel label
) {
47 if (labels
.size
== 0) {
48 this
.source_reference
= label
.source_reference
;
56 * Returns a copy of the list of switch labels.
58 * @return switch label list
60 public List
<SwitchLabel
> get_labels () {
64 public bool has_default_label () {
65 foreach (SwitchLabel label
in labels
) {
66 if (label
.expression
== null) {
74 public override void accept (CodeVisitor visitor
) {
75 visitor
.visit_switch_section (this
);
78 public override void accept_children (CodeVisitor visitor
) {
79 foreach (SwitchLabel label
in labels
) {
80 label
.accept (visitor
);
83 foreach (Statement st
in get_statements ()) {
88 public override bool check (CodeContext context
) {
95 foreach (SwitchLabel label
in get_labels ()) {
96 label
.check (context
);
99 owner
= context
.analyzer
.current_symbol
.scope
;
101 var old_symbol
= context
.analyzer
.current_symbol
;
102 var old_insert_block
= context
.analyzer
.insert_block
;
103 context
.analyzer
.current_symbol
= this
;
104 context
.analyzer
.insert_block
= this
;
106 foreach (Statement st
in get_statements ()) {
110 foreach (LocalVariable local
in get_local_variables ()) {
111 local
.active
= false;
114 // use get_statements () instead of statement_list to not miss errors within StatementList objects
115 foreach (Statement stmt
in get_statements ()) {
116 add_error_types (stmt
.get_error_types ());
119 context
.analyzer
.current_symbol
= old_symbol
;
120 context
.analyzer
.insert_block
= old_insert_block
;
125 public override void emit (CodeGenerator codegen
) {
126 foreach (SwitchLabel label
in labels
) {
127 label
.emit (codegen
);