general cleanup (#256)

This patch:
- fixes multimap implementation to work properly in node
- moves ESTreeWalker from third-party into utils/doclint. ESTreeWalker
  license is compliant with Apache2.0.
This commit is contained in:
Andrey Lushnikov
2017-08-14 21:16:59 -07:00
committed by GitHub
parent 13e8580a34
commit 0a1294c7ee
5 changed files with 3 additions and 52 deletions

View File

@@ -15,7 +15,7 @@
*/
const esprima = require('esprima');
const ESTreeWalker = require('../../../third_party/chromium/ESTreeWalker');
const ESTreeWalker = require('./ESTreeWalker');
const Documentation = require('./Documentation');
class JSOutline {