mirror of https://github.com/sbt/sbt.git
fix issue processing qualifiers in API phase
This commit is contained in:
parent
8a53e52bfd
commit
8ebbb7b420
|
|
@ -255,11 +255,11 @@ final class API(val global: Global, val callback: xsbti.AnalysisCallback) extend
|
||||||
}
|
}
|
||||||
private object Constants
|
private object Constants
|
||||||
{
|
{
|
||||||
|
val local = new xsbti.api.ThisQualifier
|
||||||
val public = new xsbti.api.Public
|
val public = new xsbti.api.Public
|
||||||
val privateLocal = new xsbti.api.Private(local)
|
val privateLocal = new xsbti.api.Private(local)
|
||||||
val protectedLocal = new xsbti.api.Protected(local)
|
val protectedLocal = new xsbti.api.Protected(local)
|
||||||
val unqualified = new xsbti.api.Unqualified
|
val unqualified = new xsbti.api.Unqualified
|
||||||
val local = new xsbti.api.ThisQualifier
|
|
||||||
val emptyPath = new xsbti.api.Path(Array())
|
val emptyPath = new xsbti.api.Path(Array())
|
||||||
val thisPath = new xsbti.api.This
|
val thisPath = new xsbti.api.This
|
||||||
val emptyType = new xsbti.api.EmptyType
|
val emptyType = new xsbti.api.EmptyType
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue