Handle template expressions that may use the << or >> operators
[arduino-ctags.git] / ant.c
blobbd01de4e381599f03f72b943f3ae71bb6e3e228e
1 /*
2 * $Id$
4 * Copyright (c) 2008, David Fishburn
6 * This source code is released for free distribution under the terms of the
7 * GNU General Public License.
9 * This module contains functions for generating tags for Ant language files.
13 * INCLUDE FILES
15 #include "general.h" /* must always come first */
17 #include <string.h>
18 #include "parse.h"
21 * FUNCTION DEFINITIONS
24 static void installAntRegex (const langType language)
26 addTagRegex (language,
27 "^[ \t]*<[ \t]*project[^>]+name=\"([^\"]+)\".*", "\\1", "p,project,projects", NULL);
28 addTagRegex (language,
29 "^[ \t]*<[ \t]*target[^>]+name=\"([^\"]+)\".*", "\\1", "t,target,targets", NULL);
32 extern parserDefinition* AntParser ()
34 static const char *const extensions [] = { "build.xml", NULL };
35 parserDefinition* const def = parserNew ("Ant");
36 def->extensions = extensions;
37 def->initialize = installAntRegex;
38 def->regex = TRUE;
39 return def;
42 /* vi:set tabstop=4 shiftwidth=4: */