mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
remove unused variable
This commit is contained in:
parent
81a8a81526
commit
5aa1ba33c1
@ -1,4 +1,3 @@
|
|||||||
/*global Packages: true */
|
|
||||||
/**
|
/**
|
||||||
A collection of functions relating to JSDoc symbol name manipulation.
|
A collection of functions relating to JSDoc symbol name manipulation.
|
||||||
@module jsdoc/name
|
@module jsdoc/name
|
||||||
@ -8,12 +7,11 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
var jsdoc = {
|
var jsdoc = {
|
||||||
tagDictionary: require('jsdoc/tag/dictionary')
|
tagDictionary: require('jsdoc/tag/dictionary')
|
||||||
};
|
};
|
||||||
|
|
||||||
var puncToScope = { '.': 'static', '~': 'inner', '#': 'instance' },
|
var puncToScope = { '.': 'static', '~': 'inner', '#': 'instance' },
|
||||||
scopeToPunc = { 'static': '.', 'inner': '~', 'instance': '#' },
|
scopeToPunc = { 'static': '.', 'inner': '~', 'instance': '#' };
|
||||||
Token = Packages.org.mozilla.javascript.Token;
|
|
||||||
|
|
||||||
var DEFAULT_SCOPE = 'static';
|
var DEFAULT_SCOPE = 'static';
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user