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.simple Desugared AST which is close to the final format (OIL) but includes named variables. 
orc.error Orc-specific throwables. 
orc.orchard Orchard is the service-oriented implementation of Orc. 
 

Uses of SourceLocation in orc.ast.extended
 

Fields in orc.ast.extended declared as SourceLocation
 SourceLocation Call.location
           
 

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

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

Uses of SourceLocation in orc.ast.simple
 

Fields in orc.ast.simple declared as SourceLocation
 SourceLocation Call.location
           
 

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

Methods in orc.ast.simple with parameters of type SourceLocation
 void Call.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 TokenException.getSourceLocation()
           
 SourceLocation Debuggable.getSourceLocation()
           
 

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

Uses of SourceLocation in orc.orchard
 

Fields in orc.orchard declared as SourceLocation
 SourceLocation TokenErrorEvent.location
           
 

Methods in orc.orchard that return SourceLocation
 SourceLocation OilSecurityValidator.SecurityProblem.getSourceLocation()
           
 

Constructors in orc.orchard with parameters of type SourceLocation
OilSecurityValidator.SecurityProblem(java.lang.String message, SourceLocation location)