All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.javascript.jscomp.modules.AutoValue_ExportTrace Maven / Gradle / Ivy

Go to download

Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's JavaScript apps, including Gmail, Google Web Search, Google Maps, and Google Docs.

The newest version!
package com.google.javascript.jscomp.modules;

import javax.annotation.processing.Generated;
import org.jspecify.nullness.Nullable;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_ExportTrace extends ExportTrace {

  private final UnresolvedModule module;

  private final String exportName;

  AutoValue_ExportTrace(
      UnresolvedModule module,
      String exportName) {
    if (module == null) {
      throw new NullPointerException("Null module");
    }
    this.module = module;
    if (exportName == null) {
      throw new NullPointerException("Null exportName");
    }
    this.exportName = exportName;
  }

  @Override
  UnresolvedModule module() {
    return module;
  }

  @Override
  String exportName() {
    return exportName;
  }

  @Override
  public String toString() {
    return "ExportTrace{"
        + "module=" + module + ", "
        + "exportName=" + exportName
        + "}";
  }

  @Override
  public boolean equals(@Nullable Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ExportTrace) {
      ExportTrace that = (ExportTrace) o;
      return this.module.equals(that.module())
          && this.exportName.equals(that.exportName());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= module.hashCode();
    h$ *= 1000003;
    h$ ^= exportName.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy