.scala-fortify_3.3.4.1.1.4.source-code.VersionSpecificPlugin.scala Maven / Gradle / Ivy
/*
* Copyright © 2016-2024 Lightbend, Inc. All rights reserved.
* No information contained herein may be reproduced or transmitted in any form
* or by any means without the express written permission of Lightbend, Inc.
*/
package com.lightbend.tools.fortify.plugin
import dotty.tools.dotc
import dotc.plugins.{StandardPlugin, PluginPhase}
trait VersionSpecificPlugin extends StandardPlugin:
def init(options: List[String], error: String => Unit): List[PluginPhase]
override def init(options: List[String]) =
init(options, s => throw RuntimeException(s))
© 2015 - 2024 Weber Informatics LLC | Privacy Policy