feat: Add kotlin support (#34)

This commit is contained in:
danymat
2022-02-11 12:31:42 +01:00
parent e59d16d787
commit 26a8899f36
4 changed files with 82 additions and 1 deletions

View File

@@ -0,0 +1,75 @@
local _template = require("neogen.template")
local i = require("neogen.types.template").item
local extractors = require("neogen.utilities.extractors")
local nodes_utils = require("neogen.utilities.nodes")
---@type neogen.Configuration
local template = {}
template.parent = {
class = { "class_declaration" },
func = { "function_declaration" },
}
template.data = {
func = {
["function_declaration"] = {
["0"] = {
extract = function(node)
local tree = {
{
node_type = "parameter",
retrieve = "all",
subtree = {
{
node_type = "simple_identifier",
as = i.Parameter,
retrieve = "first",
extract = true,
},
},
},
}
local nodes = nodes_utils:matching_nodes_from(node, tree)
local res = extractors:extract_from_matched(nodes)
return res
end,
},
},
},
class = {
["class_declaration"] = {
["0"] = {
extract = function(node)
local tree = {
{
node_type = "primary_constructor",
retrieve = "first",
subtree = {
{
node_type = "class_parameter",
retrieve = "all",
subtree = {
{
node_type = "simple_identifier",
retrieve = "first",
extract = true,
as = i.ClassAttribute,
},
},
},
},
},
}
local nodes = nodes_utils:matching_nodes_from(node, tree)
local res = extractors:extract_from_matched(nodes)
return res
end,
},
},
},
}
template.template = _template:add_default_annotation("kdoc")
return template

View File

@@ -202,6 +202,10 @@ end
---@eval return MiniDoc.afterlines_to_code(MiniDoc.current.eval_section)
---@text # Changelog~
---
--- Note: We will only document major and minor versions.
---
--- ## 2.1.0~
--- - Add basic support for `kotlin` (`kdoc`).
--- ## 2.0.0~
--- - We made the template API private, only for initial template configuration.
--- If you want to make a change to a template, please see:
@@ -211,7 +215,7 @@ end
--- with multiple annotation conventions.
---@tag neogen-changelog
---@toc_entry Changes in neogen plugin
neogen.version = "2.0.0"
neogen.version = "2.1.0"
--minidoc_afterlines_end
return neogen

View File

@@ -9,6 +9,7 @@ return {
{ nil, " * $1" },
{ nil, " *" },
{ i.Parameter, " * @param %s $1" },
{ i.ClassAttribute, "* @property %s $1" },
{ i.Return, " * @return $1" },
{ i.Throw, " * @throws $1" },
{ nil, " */" },

View File

@@ -0,0 +1 @@
return require("neogen.templates.javadoc")