* Revert "Rename cs.lua to c_sharp.lua"
This reverts commit 32adfde9b0.
* Adds generic mapping of filetype to ts parser name
148 lines
6.3 KiB
Lua
148 lines
6.3 KiB
Lua
local extractors = require("neogen.utilities.extractors")
|
|
local nodes_utils = require("neogen.utilities.nodes")
|
|
local template = require("neogen.template")
|
|
local i = require("neogen.types.template").item
|
|
|
|
return {
|
|
parent = {
|
|
func = {
|
|
"method_declaration",
|
|
"constructor_declaration",
|
|
"operator_declaration",
|
|
"delegate_declaration",
|
|
"conversion_operator_declaration",
|
|
},
|
|
class = { "class_declaration", "interface_declaration" },
|
|
type = { "field_declaration", "property_declaration", "event_field_declaration", "indexer_declaration" },
|
|
},
|
|
data = {
|
|
func = {
|
|
["method_declaration|constructor_declaration|operator_declaration|delegate_declaration|conversion_operator_declaration"] = {
|
|
["0"] = {
|
|
extract = function(node)
|
|
local tree = {
|
|
{
|
|
retrieve = "first",
|
|
node_type = "parameter_list",
|
|
subtree = {
|
|
{
|
|
retrieve = "all",
|
|
node_type = "parameter",
|
|
subtree = {
|
|
{ position = 2, extract = true, as = i.Parameter },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
retrieve = "first",
|
|
node_type = "type_parameter_list",
|
|
subtree = {
|
|
{
|
|
retrieve = "all",
|
|
node_type = "type_parameter",
|
|
subtree = {
|
|
{ position = 1, extract = true, as = i.Tparam },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
position = 1,
|
|
extract = true,
|
|
as = i.Return
|
|
},
|
|
}
|
|
local nodes = nodes_utils:matching_nodes_from(node, tree)
|
|
local res = extractors:extract_from_matched(nodes)
|
|
if res.return_statement[1] == "void" then
|
|
res.return_statement = nil
|
|
end
|
|
res.identifier = res["_"]
|
|
return res
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
class = {
|
|
["class_declaration|interface_declaration"] = {
|
|
["0"] = {
|
|
extract = function(node)
|
|
local tree = {
|
|
{
|
|
retrieve = "first",
|
|
node_type = "type_parameter_list",
|
|
subtree = {
|
|
{
|
|
retrieve = "all",
|
|
node_type = "type_parameter",
|
|
subtree = {
|
|
{ position = 1, extract = true, as = i.Tparam },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
local nodes = nodes_utils:matching_nodes_from(node, tree)
|
|
local res = extractors:extract_from_matched(nodes)
|
|
res.identifier = res["_"]
|
|
return res
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
type = {
|
|
["field_declaration|property_declaration|event_field_declaration"] = {
|
|
["0"] = {
|
|
extract = function()
|
|
return {}
|
|
end,
|
|
},
|
|
},
|
|
["indexer_declaration"] = {
|
|
["0"] = {
|
|
extract = function(node)
|
|
local tree = {
|
|
{
|
|
retrieve = "first",
|
|
node_type = "bracketed_parameter_list",
|
|
subtree = {
|
|
{
|
|
retrieve = "all",
|
|
node_type = "parameter",
|
|
subtree = {
|
|
{
|
|
retrieve = "first",
|
|
node_type = "identifier",
|
|
extract = true,
|
|
as = i.Parameter,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
retrieve = "first",
|
|
node_type = "accessor_list",
|
|
subtree = {
|
|
{
|
|
retrieve = "all",
|
|
node_type = "return_statement",
|
|
as = i.Return,
|
|
recursive = true,
|
|
extract = true,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
local nodes = nodes_utils:matching_nodes_from(node, tree)
|
|
local res = extractors:extract_from_matched(nodes)
|
|
return res
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
template = template:add_default_annotation("doxygen"):add_annotation("xmldoc"),
|
|
}
|