Uses of Class
orc.error.SourceLocation

Packages that use SourceLocation
orc.ast.extended Desugared AST which is very close to the source form. 
orc.ast.extended.pattern   
orc.ast.oil Internal representation of OIL, the Orc Intermediate Language. 
orc.ast.simple Desugared AST which is close to the final format (OIL) but includes named variables. 
orc.ast.simple.arg   
orc.error Orc-specific throwables. 
orc.error.compiletime   
orc.error.runtime   
orc.runtime.nodes Runtime execution DAG. 
 

Uses of SourceLocation in orc.ast.extended
 

Methods in orc.ast.extended that return SourceLocation
 SourceLocation Expression.getSourceLocation()
           
 

Methods in orc.ast.extended with parameters of type SourceLocation
 void Expression.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.ast.extended.pattern
 

Methods in orc.ast.extended.pattern that return SourceLocation
 SourceLocation Pattern.getSourceLocation()
           
 

Methods in orc.ast.extended.pattern with parameters of type SourceLocation
 void Pattern.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.ast.oil
 

Methods in orc.ast.oil that return SourceLocation
 SourceLocation Expr.getSourceLocation()
           
 

Methods in orc.ast.oil with parameters of type SourceLocation
 void Expr.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.ast.simple
 

Methods in orc.ast.simple that return SourceLocation
 SourceLocation Expression.getSourceLocation()
           
 

Methods in orc.ast.simple with parameters of type SourceLocation
 void Expression.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.ast.simple.arg
 

Methods in orc.ast.simple.arg that return SourceLocation
 SourceLocation Argument.getSourceLocation()
           
 

Methods in orc.ast.simple.arg with parameters of type SourceLocation
 void Argument.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.error
 

Fields in orc.error declared as SourceLocation
static SourceLocation SourceLocation.UNKNOWN
           
 

Methods in orc.error that return SourceLocation
 SourceLocation Debuggable.getSourceLocation()
           
 

Methods in orc.error with parameters of type SourceLocation
 void Locatable.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.error.compiletime
 

Constructors in orc.error.compiletime with parameters of type SourceLocation
UnboundVariableException(java.lang.String key, SourceLocation location)
           
 

Uses of SourceLocation in orc.error.runtime
 

Methods in orc.error.runtime that return SourceLocation
 SourceLocation TokenException.getSourceLocation()
           
 

Methods in orc.error.runtime with parameters of type SourceLocation
 void TokenException.setSourceLocation(SourceLocation location)
           
 

Uses of SourceLocation in orc.runtime.nodes
 

Methods in orc.runtime.nodes that return SourceLocation
 SourceLocation Node.getSourceLocation()
           
 

Methods in orc.runtime.nodes with parameters of type SourceLocation
 void Node.setSourceLocation(SourceLocation location)