Skip to content

Commit

Permalink
Remove new
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-adam committed May 7, 2024
1 parent 10ea23c commit b86c7e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import pl.writeonly.catculator.core.adt.calculus.*
import scala.language.postfixOps

object FunctionReducer {
val haskellFunctionReducer = new FunctionReducer(LambdaConfig.haskellConfig)
val haskellFunctionReducer: FunctionReducer = FunctionReducer(LambdaConfig.haskellConfig)
}

class FunctionReducer(config: LambdaConfig) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import spire.math.Natural.End
import spire.math.*

object SugarReducer {
val haskellSugarReducer = new SugarReducer(LambdaConfig.haskellConfig)
val lambdaSugarReducer = new SugarReducer(LambdaConfig.lambdaConfig)
val haskellSugarReducer: SugarReducer = SugarReducer(LambdaConfig.haskellConfig)
val lambdaSugarReducer: SugarReducer = SugarReducer(LambdaConfig.lambdaConfig)
}

class SugarReducer(config: LambdaConfig) {
Expand Down

0 comments on commit b86c7e8

Please sign in to comment.