Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/micromatch/lib/compilers.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

77 lines (64 sloc)
1.78 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var nanomatch = require('nanomatch'); | |
var extglob = require('extglob'); | |
module.exports = function(snapdragon) { | |
var compilers = snapdragon.compiler.compilers; | |
var opts = snapdragon.options; | |
// register nanomatch compilers | |
snapdragon.use(nanomatch.compilers); | |
// get references to some specific nanomatch compilers before they | |
// are overridden by the extglob and/or custom compilers | |
var escape = compilers.escape; | |
var qmark = compilers.qmark; | |
var slash = compilers.slash; | |
var star = compilers.star; | |
var text = compilers.text; | |
var plus = compilers.plus; | |
var dot = compilers.dot; | |
// register extglob compilers or escape exglobs if disabled | |
if (opts.extglob === false || opts.noext === true) { | |
snapdragon.compiler.use(escapeExtglobs); | |
} else { | |
snapdragon.use(extglob.compilers); | |
} | |
snapdragon.use(function() { | |
this.options.star = this.options.star || function(/*node*/) { | |
return '[^\\\\/]*?'; | |
}; | |
}); | |
// custom micromatch compilers | |
snapdragon.compiler | |
// reset referenced compiler | |
.set('dot', dot) | |
.set('escape', escape) | |
.set('plus', plus) | |
.set('slash', slash) | |
.set('qmark', qmark) | |
.set('star', star) | |
.set('text', text); | |
}; | |
function escapeExtglobs(compiler) { | |
compiler.set('paren', function(node) { | |
var val = ''; | |
visit(node, function(tok) { | |
if (tok.val) val += (/^\W/.test(tok.val) ? '\\' : '') + tok.val; | |
}); | |
return this.emit(val, node); | |
}); | |
/** | |
* Visit `node` with the given `fn` | |
*/ | |
function visit(node, fn) { | |
return node.nodes ? mapVisit(node.nodes, fn) : fn(node); | |
} | |
/** | |
* Map visit over array of `nodes`. | |
*/ | |
function mapVisit(nodes, fn) { | |
var len = nodes.length; | |
var idx = -1; | |
while (++idx < len) { | |
visit(nodes[idx], fn); | |
} | |
} | |
} |