mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
23 lines
650 B
JavaScript
23 lines
650 B
JavaScript
global.jsdocPluginsTest.plugin2 = {};
|
|
|
|
exports.handlers = {
|
|
fileBegin: function() {
|
|
global.jsdocPluginsTest.plugin2.fileBegin = true;
|
|
},
|
|
beforeParse: function() {
|
|
global.jsdocPluginsTest.plugin2.beforeParse = true;
|
|
},
|
|
jsdocCommentFound: function() {
|
|
global.jsdocPluginsTest.plugin2.jsdocCommentFound = true;
|
|
},
|
|
symbolFound: function() {
|
|
global.jsdocPluginsTest.plugin2.symbolFound = true;
|
|
},
|
|
newDoclet: function() {
|
|
global.jsdocPluginsTest.plugin2.newDoclet = true;
|
|
},
|
|
fileComplete: function() {
|
|
global.jsdocPluginsTest.plugin2.fileComplete = true;
|
|
}
|
|
};
|