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.
|
||||
@module jsdoc/name
|
||||
@ -9,11 +8,10 @@
|
||||
|
||||
var jsdoc = {
|
||||
tagDictionary: require('jsdoc/tag/dictionary')
|
||||
};
|
||||
};
|
||||
|
||||
var puncToScope = { '.': 'static', '~': 'inner', '#': 'instance' },
|
||||
scopeToPunc = { 'static': '.', 'inner': '~', 'instance': '#' },
|
||||
Token = Packages.org.mozilla.javascript.Token;
|
||||
scopeToPunc = { 'static': '.', 'inner': '~', 'instance': '#' };
|
||||
|
||||
var DEFAULT_SCOPE = 'static';
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user