Last analyzed c54e5cc 2 months ago
Default analysis branch is
Currently analyzing run
Missing return statement JS-0030
Bug risk
5 months ago5 months old
Expected to return a value in getter 'reloadReason'.
 1748      return true;
 1749    }
 1750    get reloadReason() {
 1751      return; 1752    }
 1753    prepareToRender() {
 1754      return;
Expected method 'get' to always return a value.
  640    }
  641    addEventListener("click", clickCaptured, true);
  642    Object.defineProperty(prototype, "submitter", {
  643      get() {  644        if (this.type == "submit" && this.target instanceof HTMLFormElement) {
  645          return submittersByForm.get(this.target);
  646        }
Expected getter 'reloadReason' to always return a value.
 3041    get shouldRender() {
 3042      return this.newSnapshot.isVisitable && this.trackedElementsAreIdentical;
 3043    }
 3044    get reloadReason() { 3045      if (!this.newSnapshot.isVisitable) {
 3046        return {
 3047          reason: "turbo_visit_control_is_reload"
Expected getter 'sourceURL' to always return a value.
 4024    get enabled() {
 4025      return !this.element.disabled;
 4026    }
 4027    get sourceURL() { 4028      if (this.element.src) {
 4029        return this.element.src;
 4030      }
Expected getter 'performAction' to always return a value.
 4137      const newChildrenIds = [...((_a = this.templateContent) === null || _a === void 0 ? void 0 : _a.children) || []].filter((c) => !!c.id).map((c) => c.id);
 4138      return existingChildren.filter((c) => newChildrenIds.includes(c.id));
 4139    }
 4140    get performAction() { 4141      if (this.action) {
 4142        const actionFunction = StreamActions[this.action];
 4143        if (actionFunction) {