mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
32 lines
850 B
JavaScript
32 lines
850 B
JavaScript
global.jsdocPluginsTest.plugin1 = {};
|
|
|
|
exports.handlers = {
|
|
fileBegin: function() {
|
|
global.jsdocPluginsTest.plugin1.fileBegin = true;
|
|
},
|
|
beforeParse: function() {
|
|
global.jsdocPluginsTest.plugin1.beforeParse = true;
|
|
},
|
|
jsdocCommentFound: function() {
|
|
global.jsdocPluginsTest.plugin1.jsdocCommentFound = true;
|
|
},
|
|
symbolFound: function() {
|
|
global.jsdocPluginsTest.plugin1.symbolFound = true;
|
|
},
|
|
newDoclet: function() {
|
|
global.jsdocPluginsTest.plugin1.newDoclet = true;
|
|
},
|
|
fileComplete: function() {
|
|
global.jsdocPluginsTest.plugin1.fileComplete = true;
|
|
}
|
|
};
|
|
|
|
exports.defineTags = function(dictionary) {
|
|
dictionary.defineTag("foo", {
|
|
canHaveName: true,
|
|
onTagged: function(doclet, tag) {
|
|
doclet.foo = true;
|
|
}
|
|
});
|
|
};
|