Comment 注释
1. 结构声明
- TS Declaration
- JSON Schema
class Comment extends LogicItem {
value: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"folded": {
"type": "boolean"
},
"offsetX": {
"type": "number"
},
"offsetY": {
"type": "number"
},
"typeAnnotation": {
"$ref": "#/definitions/TypeAnnotation"
},
"value": {
"type": "string"
}
},
"required": [
"value"
],
"additionalProperties": false
}
2. 节点示例
(1) 示例
AST 如下:
- JSON
- YAML
{
"concept": "Comment",
"value": "这是一段注释,用户可自行修改。"
}
concept: Comment
value: 这是一段注释,用户可自行修改。
对应的代码如下:
- 文本化 NASL
- Natural TS
/* 这是一段注释,用户可自行修改。 */
/* 这是一段注释,用户可自行修改。 */