Release 0.41.92
[vala-gnome.git] / libvaladoc / taglets / tagletsince.vala
blob12447420469f197e510a658592a21d1c3b4a21c2
1 /* tagletsince.vala
3 * Copyright (C) 2008-2009 Didier Villevalois
4 * Copyright (C) 2008-2012 Florian Brosch
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 * Author:
21 * Didier 'Ptitjes Villevalois <ptitjes@free.fr>
25 using Valadoc.Content;
27 public class Valadoc.Taglets.Since : ContentElement, Taglet, Block {
28 public string version { get; internal set; }
30 public Rule? get_parser_rule (Rule run_rule) {
31 Rule optional_spaces = Rule.option ({ Rule.many ({ TokenType.SPACE }) });
33 return Rule.seq ({
34 optional_spaces,
35 TokenType.any_word ().action ((token) => { version = token.to_string (); }),
36 optional_spaces
37 });
40 public override void check (Api.Tree api_root, Api.Node container, string file_path,
41 ErrorReporter reporter, Settings settings)
45 public override void accept (ContentVisitor visitor) {
46 visitor.visit_taglet (this);
49 public override bool is_empty () {
50 return false;
53 public override ContentElement copy (ContentElement? new_parent = null) {
54 Since since = new Since ();
55 since.parent = new_parent;
57 since.version = version;
59 return since;