nitc :: AAnnotation :: defaultinit
# A single annotation
class AAnnotation
super ADefinition
# The name of the annotation
var n_atid: AAtid is writable, noinit
# The opening parenthesis of the arguments
var n_opar: nullable TOpar = null is writable
# The list of arguments
var n_args = new ANodes[AExpr](self)
# The closing parenthesis
var n_cpar: nullable TCpar = null is writable
# The name of the annotation
fun name: String
do
return n_atid.n_id.text
end
end
src/parser/parser_nodes.nit:3077,1--3098,3