org.scalajs.linker.backend.LinkerBackendImplPlatformExtensions.scala Maven / Gradle / Ivy
/*
* Scala.js (https://www.scala-js.org/)
*
* Copyright EPFL.
*
* Licensed under Apache License 2.0
* (https://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package org.scalajs.linker.backend
import org.scalajs.linker.backend.closure.ClosureLinkerBackend
object LinkerBackendImplPlatformExtensions {
import LinkerBackendImpl.Config
final class ConfigExt private[backend] (private val self: Config)
extends AnyVal {
/** Whether to actually use the Google Closure Compiler pass. */
def closureCompiler: Boolean = self.closureCompilerIfAvailable
def withClosureCompiler(closureCompiler: Boolean): Config =
self.withClosureCompilerIfAvailable(closureCompiler)
}
}