Difference between revisions of "LDT/User Area/Documentation Language"
(→Short references) |
(→Type) |
||
Line 7: | Line 7: | ||
== Type == | == Type == | ||
− | This is the most important one. A ''type'' is a set of values, accessible through fields. It is not | + | This is the most important one. A compound''type'' is a set of values, accessible through fields. It is not a primitive type like <code>string</code>, <code>number</code> or <code>nil</code>. Theses fields can point to functions, primitive values or other compound types. |
It is the way to explicitly ensure the structure of a Lua table. | It is the way to explicitly ensure the structure of a Lua table. |
Revision as of 05:36, 23 July 2012
This documentation language has been developed as part of Koneki, its main goal is to describe the API supplied by a file. It is strongly inspired by LDoc. Information given with this language is parsed by LDT and supply advanced features such as code completion and documentation view. Before diving into syntax, it is time to enumerate the underlying concepts, knowing them will enable you to write documentation more efficiently.
Concepts
Our documentation language introduce some concepts which may not be described explicitly in Lua, but help for API description and tooling.
Type
This is the most important one. A compoundtype is a set of values, accessible through fields. It is not a primitive type like string
, number
or nil
. Theses fields can point to functions, primitive values or other compound types.
It is the way to explicitly ensure the structure of a Lua table.
Module
It is requireable entity - you can use the require
function on it- able to modify global environment which return a type. Most of the time people refer to the returned type instance as module.
Field
It is always a field of a type. This is the way to ensure the presence of a value in a table which implement a type. It can be typed with a type different from parent one.
Function
It is a special type of field which can have parameters and return values, just as Lua functions. Both parameters and returned values can be typed. This concept allow to express a contract about which parameters suit a function and expected outputs.
Global
In Lua you can affect and read globals at anytime. To handle those cases, the predefined type global is available. It is a reserved type which will be available everywhere, enabling you to attach field and function to it.
Type references
It is often needed to refer to a type. There is a notation for this. It is based on types. So if you want to type a field or a function, they are several kinds of references available.
Primitive references
Refer to Lua primitive types, it is the type prefixed with #
.
-
#boolean
-
#nil
-
#number
-
#string
-
#table
Internal references
Enables to refer to types defined in current module, it is type name prefixed with #
.
-
#typename
will refer to type typename defined in current module.
External references
Enables to refer to a type defined in another module, it is targeted module name followed by internal reference which could be used in targeted module.
-
modulename#typename
will refer to type typename defined in module modulename. -
modulename#modulename
will refer to type modulename returned in module modulename.
Comments
It is the only source of information of our documentation language. So far, there is no inference from code. So all aspect of the API has to be described explicitly.
Special comments
First of all, only special comments are parsed as part of Lua documentation. To mark your comment as special, just start it with ---
.
Special comments can contain a short and an long description. The short description start at the beginning of the comment and continue till .
or ?
. The long description is the text coming after. By the way, Markdown is supported in all descriptions.
Special comments are handled only if they describe a concept.
Note: All leading -
's in special comments are trimmed.
--------------------------------------------------------------------------------
-- Short description.
-- Long _markdown_ description
Note: _markdown_
is supposed to be interpreted by Markdown.
---
-- Short description.
-- Long description
--[[-
Short description.
Long description
]]
--- Short description. Long description
Type comment block
A type comment block is a special comment with a type declaration with @type
key word followed by desired type name.
--------------------------------------------------------------------------------
-- Type short description.
-- Type long description
--
-- @type typename
Module comment block
Denoted by @module
keyword and followed by a module name, a module is the type described in a file. This is why there should be only one module declaration per file. Here is the simplest way to declare a module.
--------------------------------------------------------------------------------
-- Module short description.
-- Module long description
--
-- @module modulename
When a module is declared, a type with its name is automatically created and returned. So, the following is equivalent to first module sample.
--------------------------------------------------------------------------------
-- Module short description.
-- Module long description
--
-- @module modulename
-- @return #modulename
---@type modulename
Note: We used #typename
to refer to a declared type, if you want to know more about it refer to type reference section.
In previous sample, you may wonder in which case it could be of any use to return manually a type for a module. It is useful when you want to return a type different from the one automatically created.
--------------------------------------------------------------------------------
-- Module short description.
-- Module long description
--
-- @module modulename
-- @return #string
Note: We used #string
to refer to a primitive type.
Field comment block
The field block represents a field of a type. It is possible to declare one with @field
keyword followed by optional type reference, field name and optional description.
There are two ways of defining a field, in its parent block type or in a separate documentation block where you have to mention field parent type.
--------------------------------------------------------------------------------
-- Type short description.
-- Type long description
--
-- @type typename
-- @field #string fieldname Field description
---
-- Type short description.
-- Type long description
--
-- @type typename
---
-- Field description
--
-- @field [parent=#typename] #string fieldname
Function comment block
The function comment block has to be attached to a type. Its keyword is @function
. A function can have several parameters denoted by keyword @param
, they can be optionally typed with a type reference and have an optional descriptions. Several @return
cases are also possible, but LDT inference -which is used for code assistance- only handles the fist one. As Lua functions allow to return several values at once, it is possible to define several returned values per @return
markup. Returned values can be optionally typed using a type reference.
Note: If the first @param
is called self, LDT will show completion proposal without this parameter but using :
invocation operator.
--------------------------------------------------------------------------------
-- Function short description.
-- Function long description
--
-- @function [parent=#typename] functionname
-- @param self Parameter description
-- @param #string parametername Parameter description
-- @return #number Typed return description
-- @return #nil, #string Traditional nil and error message
-- @return Untyped return description
Global comment block
To declare a function or a field with a type reference as global, you just have to attach it to the global
type.
--------------------------------------------------------------------------------
-- Field long description
--
-- @field [parent=#global] #string fieldname
--------------------------------------------------------------------------------
-- Function short description. Function long description
--
-- @function [parent=#global] functionname
-- @param self
Sample mixing code and comments
---
-- Module short description.
-- Module _long description_
--
-- @module modulename
local M = {}
---
-- Field description
--
-- @field [parent=#modulename] #string fieldname
M.fieldname = 'field value'
---
-- Function short description.
-- Function long description
--
-- @function [parent=#modulename] functionname
-- @param self Parameter description
-- @return #number Typed return description
-- @return #nil, #string Traditional nil and error message
function M.functionname(self)
return 0
end
return M
Short references
It is way to reference a types and their fields in a textual description. You just have to surround a type reference with @{}
. You can reference a types and their fields, functions are handled as a specific type of fields.
- Reference to types
-
@{#typename}
will refer to type typename defined in current module. -
@{#modulename}
equivalent to previous notation, as a module is the type returned by a file. -
@{modulename}
will refer to module named modulename. -
@{modulename#typename}
will refer to type typename defined in module modulename.
-
- Reference to fields
-
@{#typename.fieldname}
will refer to fieldname which could be a function or field attached to type typename defined in current module.-
@{#(type.name).fieldname}
to remove ambiguity, when type name contains"."
.
-
-
@{modulename#typename.fieldname}
will refer to fieldname which could be a function or field attached to type typename defined in modulename module.
-
--------------------------------------------------------------------------------
-- Short description and reference to @{io#io.flush}.
--
-- @function [parent=#typename] functionname
Limitations
Identifiers
Due to our way of parsing, is not possible to use tag names as identifiers. So assume that the following identifiers are reserved:
- field
- function
- module
- param
- return
- type
Markdown
Markdown allows reusable element. As each description is parsed separately, you cannot reuse an element from another description.
Inference
So far, all information about the documented module has to be explicitly described. There is no inference enabling us to extract documentation-valuable information from the code ... yet.
Parsing
We use Metalua to parse comments, and it can't parse only comments. So if you write a documentation only file, ensure it contains a least a valid statement. Most of the time we use, return nil
at end of file.
Tips
Usage
When you have a comment block related to a concept, you can give a sample of it should be used by using the @usage
keyword.
--------------------------------------------------------------------------------
-- Module short description.
-- Module long description
--
-- @module modulename
-- @usage local modulename = require 'modulename'