programpoint.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 18 行

SCALA
18
字号
/* NSC -- new Scala compiler * Copyright 2005-2006 LAMP/EPFL * @author  Martin Odersky */// $Id: ProgramPoint.scala 14416 2008-03-19 01:17:25Z mihaylov $package scala.tools.nsc.backend.icode.analysis/** Program points are locations in the program where we want to *  assert certain properties through data flow analysis, e.g. *  basic blocks. */trait ProgramPoint[a <: ProgramPoint[a]] {  def predecessors: List[a]  def successors: List[a]}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?