remove unused variable

This commit is contained in:
Jeff Williams 2012-11-05 19:32:31 -08:00
parent 81a8a81526
commit 5aa1ba33c1

View File

@ -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';