13 lines
293 B
Scala
13 lines
293 B
Scala
package amyc.utils
|
|
|
|
// Contains a reporter and configuration for the compiler
|
|
case class Context(
|
|
reporter: Reporter,
|
|
files: List[String],
|
|
printTokens: Boolean = false,
|
|
printTrees: Boolean = false,
|
|
printNames: Boolean = false,
|
|
interpret: Boolean = false,
|
|
help: Boolean = false
|
|
)
|