public NamedParameter(final Identifier name, final TemplateInstance instance) {
    super();
    this.name = name;
    this.instance = instance;
    location = NULL_Location.INSTANCE;

    if (instance != null) {
      instance.setFullNameParent(this);
    }
  }