3 * Copyright (C) 2008 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
.ErrorCode
: TypeSymbol
{
30 * Specifies the numerical representation of this enum value.
32 public Expression value
{ get; set; }
35 * Creates a new enum value.
37 * @param name enum value name
38 * @return newly created enum value
40 public ErrorCode (string name
, SourceReference? source_reference
= null, Comment? comment
= null) {
41 base (name
, source_reference
, comment
);
45 * Creates a new enum value with the specified numerical representation.
47 * @param name enum value name
48 * @param value numerical representation
49 * @return newly created enum value
51 public ErrorCode
.with_value (string name
, Expression value
, SourceReference? source_reference
= null) {
52 this (name
, source_reference
);
56 public override void accept (CodeVisitor visitor
) {
57 visitor
.visit_error_code (this
);
60 public override void accept_children (CodeVisitor visitor
) {
62 value
.accept (visitor
);
66 public override bool check (CodeContext context
) {
74 value
.check (context
);