mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The code goes into its own sub-tree under 'tools' but tests go under 'test', so that running 'check-swift' will also run all the SourceKit tests. SourceKit is disabled on non-darwin platforms.
30 lines
672 B
JSON
30 lines
672 B
JSON
{
|
|
key.request: source.request.codecomplete.setcustom,
|
|
key.results: [
|
|
{
|
|
key.name: "customExpr",
|
|
key.kind: myuid.customExpr,
|
|
key.context: [ source.lang.swift.expr ]
|
|
},
|
|
{
|
|
key.name: "customStmt",
|
|
key.kind: myuid.customStmt,
|
|
key.context: [ source.lang.swift.stmt ]
|
|
},
|
|
{
|
|
key.name: "customType",
|
|
key.kind: myuid.customType,
|
|
key.context: [ source.lang.swift.type ]
|
|
},
|
|
{
|
|
key.name: "customExprOrStmtOrType",
|
|
key.kind: myuid.customExprOrStmtOrType,
|
|
key.context: [
|
|
source.lang.swift.expr,
|
|
source.lang.swift.stmt,
|
|
source.lang.swift.type
|
|
]
|
|
}
|
|
]
|
|
}
|