You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
276 B

/*globals options: false */
/*jslint node: true */
"use strict";
var common = require('./common');
module.exports = function ()
{
var matcher = new options.Matcher();
common.add_bindings(matcher);
common.match(matcher);
common.remove_bindings(matcher);
};