gtk+-3.0: Update to 3.0.5
[vala-lang.git] / vala / valaerrorcode.vala
blob4102feda01a104771974411bff8fe2e2b51a54c8
1 /* valaerrorcode.vala
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
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
25 /**
26 * Represents an enum member in the source code.
28 public class Vala.ErrorCode : TypeSymbol {
29 /**
30 * Specifies the numerical representation of this enum value.
32 public Expression value { get; set; }
34 private string cname;
36 /**
37 * Creates a new enum value.
39 * @param name enum value name
40 * @return newly created enum value
42 public ErrorCode (string name, SourceReference? source_reference = null, Comment? comment = null) {
43 base (name, source_reference, comment);
46 /**
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 ErrorCode.with_value (string name, Expression value, SourceReference? source_reference = null) {
54 this (name, source_reference);
55 this.value = value;
58 public override void accept (CodeVisitor visitor) {
59 visitor.visit_error_code (this);
62 public override void accept_children (CodeVisitor visitor) {
63 if (value != null) {
64 value.accept (visitor);
68 public override string get_cname (bool const_type = false) {
69 if (cname == null) {
70 var edomain = (ErrorDomain) parent_symbol;
71 cname = "%s%s".printf (edomain.get_cprefix (), name);
73 return cname;
76 public override string? get_lower_case_cname (string? infix) {
77 return get_cname ().down ();
80 public override bool check (CodeContext context) {
81 if (checked) {
82 return !error;
85 checked = true;
87 if (value != null) {
88 value.check (context);
91 return !error;