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 an enum member in the source code.
28 public class Vala
.EnumValue
: Constant
{
30 * The nick of this enum-value
35 _nick
= get_attribute_string ("Description", "nick");
37 _nick
= name
.down ().replace ("_", "-");
44 private string? _nick
= null;
47 * Creates a new enum value with the specified numerical representation.
49 * @param name enum value name
50 * @param value numerical representation
51 * @return newly created enum value
53 public EnumValue (string name
, Expression? value
, SourceReference? source_reference
= null, Comment? comment
= null) {
54 base (name
, null, value
, source_reference
, comment
);
57 public override void accept (CodeVisitor visitor
) {
58 visitor
.visit_enum_value (this
);
61 public override void accept_children (CodeVisitor visitor
) {
63 value
.accept (visitor
);
67 public override bool check (CodeContext context
) {
75 value
.check (context
);