* Constructs this matcher with a Function node that serves as the template
* to match all other nodes against. The body of the function will be used
* to match against.
*/
public JsSourceMatcher(AbstractCompiler compiler, Node templateNode) {
matcher = new TemplateAstMatcher(compiler, templateNode);
}