static GazelleTree gazelle_interpretableToTree(GInterpretable intp) {
  ret intp == null ? null
    : nu GazelleTree(
      text := intp.text,
      quickImportTo(RuleEngine2_MatchedRule, intp.mr));
}