case class Skip() extends AST with Command with Product with Serializable
Do nothing
- Alphabetic
- By Inheritance
- Skip
- Serializable
- Serializable
- Product
- Equals
- Command
- AST
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Skip()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
exec(state: State): State
Executes a command given a state
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
isDef(variable: Variable): Boolean
Checks if an AST directly defines a given variable
Checks if an AST directly defines a given variable
- variable
the variable to check
- Definition Classes
- AST
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isRef(variable: Variable): Boolean
Checks if an AST contains a reference to a given variable
Checks if an AST contains a reference to a given variable
- variable
the variable to check
- Definition Classes
- AST
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
replace(searchVar: Variable, newVar: Variable): Command
Replaces a variable to another in this tree
Replaces a variable to another in this tree
- searchVar
the variable to search for
- newVar
the replacement variable
- returns
a new Expression with applied changes
- Definition Classes
- Command
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toCFG: CFG
Shorthand for toCFGRec
-
def
toCFGRec(i: Int): (CFG, Int, List[Int])
Transforms this AST to a CFG recursively
Transforms this AST to a CFG recursively
Note that this function will ALWAYS return a graph with one more node at the end
- i
the current available label
- returns
the built CFG, the next available label, and a list of outgoing connexions
- Definition Classes
- Command
-
def
toString(): String
Returns a string representation of this AST
Returns a string representation of this AST
Implemented here for easy update (with match clause)
- Definition Classes
- AST → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )