mirror of https://github.com/sbt/sbt.git
Fix ordering
This commit is contained in:
parent
9f13499bcf
commit
8081661a7d
|
|
@ -150,15 +150,6 @@ object SettingQuery {
|
||||||
} yield Act.taskKeyExtra(index, defaultConfigs, keyMap, proj, confAmb, partialMask)
|
} yield Act.taskKeyExtra(index, defaultConfigs, keyMap, proj, confAmb, partialMask)
|
||||||
}
|
}
|
||||||
|
|
||||||
def scopedKeyParser(structure: BuildStructure, currentBuild: URI): Parser[ScopedKey[_]] =
|
|
||||||
scopedKey(
|
|
||||||
structure.index.keyIndex,
|
|
||||||
currentBuild,
|
|
||||||
structure.extra.configurationsForAxis,
|
|
||||||
structure.index.keyMap,
|
|
||||||
structure.data
|
|
||||||
)
|
|
||||||
|
|
||||||
def scopedKeySelected(
|
def scopedKeySelected(
|
||||||
index: KeyIndex,
|
index: KeyIndex,
|
||||||
currentBuild: URI,
|
currentBuild: URI,
|
||||||
|
|
@ -178,4 +169,13 @@ object SettingQuery {
|
||||||
data: Settings[Scope]
|
data: Settings[Scope]
|
||||||
): Parser[ScopedKey[_]] =
|
): Parser[ScopedKey[_]] =
|
||||||
scopedKeySelected(index, currentBuild, defaultConfigs, keyMap, data).map(_.key)
|
scopedKeySelected(index, currentBuild, defaultConfigs, keyMap, data).map(_.key)
|
||||||
|
|
||||||
|
def scopedKeyParser(structure: BuildStructure, currentBuild: URI): Parser[ScopedKey[_]] =
|
||||||
|
scopedKey(
|
||||||
|
structure.index.keyIndex,
|
||||||
|
currentBuild,
|
||||||
|
structure.extra.configurationsForAxis,
|
||||||
|
structure.index.keyMap,
|
||||||
|
structure.data
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue