1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*
* Generated by ./misc/optlib2c from optlib/elixir.ctags, Don't edit this manually.
*/
#include "general.h"
#include "parse.h"
#include "routines.h"
#include "field.h"
#include "xtag.h"
static void initializeElixirParser (const langType language CTAGS_ATTR_UNUSED)
{
}
extern parserDefinition* ElixirParser (void)
{
static const char *const extensions [] = {
"ex",
"exs",
NULL
};
static const char *const aliases [] = {
NULL
};
static const char *const patterns [] = {
NULL
};
static kindDefinition ElixirKindTable [] = {
{
true, 'p', "protocol", "protocols (defprotocol...)",
},
{
true, 'm', "module", "modules (defmodule ...)",
},
{
true, 'f', "function", "functions (def ...)",
},
{
true, 'c', "callback", "callbacks (defcallback ...)",
},
{
true, 'd', "delegate", "delegates (defdelegate ...)",
},
{
true, 'e', "exception", "exceptions (defexception ...)",
},
{
true, 'g', "guard", "guards (defguard ...)",
},
{
true, 'i', "implementation", "implementations (defimpl ...)",
},
{
true, 'a', "macro", "macros (defmacro ...)",
},
{
true, 'o', "operator", "operators (e.g. \"defmacro a <<< b\")",
},
{
true, 'r', "record", "records (defrecord...)",
},
{
true, 't', "test", "tests (test ...)",
},
{
true, 'y', "type", "types (@type ...)",
},
};
static fieldDefinition ElixirFieldTable [] = {
{
.enabled = true,
.name = "access",
.description = "access",
},
};
static tagRegexTable ElixirTagRegexTable [] = {
{"^[ \t]*defprotocol[ \t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)", "\\2",
"p", "{scope=set}", NULL, false},
{"^[ \t]*defmodule[ \t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)", "\\2",
"m", "{scope=set}", NULL, false},
{"^[ \t]*def((p?)|macro(p?))[ \t]+([a-zA-Z0-9_?!]+)[ \t]+([\\|\\^/&<>~.=!*+-]{1,3}|and|or|in|not|when|not in)[ \t]+[a-zA-Z0-9_?!]", "\\5",
"o", "{scope=ref}{exclusive}", NULL, false},
{"^[ \t]*def[ \t]+([a-z_][a-zA-Z0-9_?!]*)", "\\1",
"f", "{scope=ref}{_field=access:public}", NULL, false},
{"^[ \t]*defp[ \t]+([a-z_][a-zA-Z0-9_?!]*)", "\\1",
"f", "{scope=ref}{_field=access:private}", NULL, false},
{"^[ \t]*(@|def)callback[ \t]+([a-z_][a-zA-Z0-9_?!]*)", "\\2",
"c", "{scope=ref}", NULL, false},
{"^[ \t]*defdelegate[ \t]+([a-z_][a-zA-Z0-9_?!]*)", "\\1",
"d", "{scope=ref}", NULL, false},
{"^[ \t]*defexception[ \t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)", "\\2",
"e", "{scope=ref}", NULL, false},
{"^[ \t]*defguard[ \t]+(is_[a-zA-Z0-9_?!]+)", "\\1",
"g", "{scope=ref}{_field=access:public}", NULL, false},
{"^[ \t]*defguardp[ \t]+(is_[a-zA-Z0-9_?!]+)", "\\1",
"g", "{scope=ref}{_field=access:private}", NULL, false},
{"^[ \t]*defimpl[ \t]+([A-Z][a-zA-Z0-9_]*\\.)*([A-Z][a-zA-Z0-9_?!]*)", "\\2",
"i", "{scope=ref}", NULL, false},
{"^[ \t]*defmacro[ \t]+([a-z_][a-zA-Z0-9_?!]*)(.[^\\|\\^/&<>~.=!*+-]+)", "\\1",
"a", "{scope=ref}{_field=access:public}", NULL, false},
{"^[ \t]*defmacrop[ \t]+([a-z_][a-zA-Z0-9_?!]*)(.[^\\|\\^/&<>~.=!*+-]+)", "\\1",
"a", "{scope=ref}{_field=access:private}", NULL, false},
{"^[ \t]*Record\\.defrecord[ \t(]+:([a-zA-Z0-9_]+)(\\)?)", "\\1",
"r", "{scope=ref}{_field=access:public}", NULL, false},
{"^[ \t]*Record\\.defrecordp[ \t(]+:([a-zA-Z0-9_]+)(\\)?)", "\\1",
"r", "{scope=ref}{_field=access:private}", NULL, false},
{"^[ \t]*test[ \t(]+\"([a-z_][a-zA-Z0-9_?! ]*)\"*(\\)?)[ \t]*do", "\\1",
"t", "{scope=ref}", NULL, false},
{"^[ \t]*@(type|opaque)[ \t]+([a-z_][a-zA-Z0-9_?!]*)", "\\2",
"y", "{scope=ref}{_field=access:public}", NULL, false},
{"^[ \t]*@typep[ \t]+([a-z_][a-zA-Z0-9_?!]*)", "\\1",
"y", "{scope=ref}{_field=access:private}", NULL, false},
};
parserDefinition* const def = parserNew ("Elixir");
def->enabled = true;
def->extensions = extensions;
def->patterns = patterns;
def->aliases = aliases;
def->method = METHOD_NOT_CRAFTED|METHOD_REGEX;
def->useCork = CORK_QUEUE;
def->kindTable = ElixirKindTable;
def->kindCount = ARRAY_SIZE(ElixirKindTable);
def->fieldTable = ElixirFieldTable;
def->fieldCount = ARRAY_SIZE(ElixirFieldTable);
def->tagRegexTable = ElixirTagRegexTable;
def->tagRegexCount = ARRAY_SIZE(ElixirTagRegexTable);
def->initialize = initializeElixirParser;
return def;
}
|