本文整理汇总了Scala中scala.reflect.internal.util.BatchSourceFile类的典型用法代码示例。如果您正苦于以下问题:Scala BatchSourceFile类的具体用法?Scala BatchSourceFile怎么用?Scala BatchSourceFile使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BatchSourceFile类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Scala代码示例。
示例1: CompilerTree
//设置package包名称以及导入依赖的类
package org.ucf.spark.ScalaAST
import scala.tools.nsc._
import io._
import scala.io.Source
import scala.reflect.runtime.{universe =>ru}
import scala.tools.reflect.ToolBox
import com.google.common.io.Files
import java.nio.charset.Charset
import java.io.File
import scala.reflect.internal.util.BatchSourceFile
object CompilerTree extends Global(new Settings()){
new Run
def parseToTree(path:String) = {
val code = AbstractFile.getFile(path)
val bfs = new BatchSourceFile(code,code.toCharArray)
val parser = new syntaxAnalyzer.UnitParser(new CompilationUnit(bfs))
parser.smartParse()
}
def parseToString(path:String) = {
showRaw(this.parseToTree(path))
}
def parseWithMirror(path:String) = {
val source = Files.toString(new File(path),Charset.forName("UTF-8"))
val toolBox = ru.runtimeMirror(getClass.getClassLoader).mkToolBox()
toolBox.parse(source)
}
def parseWithMirrorTypeCheck(path:String) = {
val source = Files.toString(new File(path),Charset.forName("UTF-8"))
val toolBox = ru.runtimeMirror(getClass.getClassLoader).mkToolBox()
toolBox.typecheck(toolBox.parse(source))
}
}