Future<Instruction> recognize(String url)

Given a URL, returns an instruction representing the component graph

Source

Future<Instruction> recognize(String url) {
  var ancestorComponents = this._getAncestorInstructions();
  return this.registry.recognize(url, ancestorComponents);
}