mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The protocols in the standard library are called `ExpressibleBy*` and SwiftSyntax should follow the same naming convention.
19 lines
541 B
Python
19 lines
541 B
Python
SYNTAX_BUILDABLE_EXPRESSIBLE_BY_CONFORMANCES = {
|
|
'ExpressibleByConditionElement': [
|
|
'ExpressibleByConditionElementList'
|
|
],
|
|
'ExpressibleByDeclBuildable': [
|
|
'ExpressibleByCodeBlockItem',
|
|
'ExpressibleByMemberDeclListItem',
|
|
'ExpressibleBySyntaxBuildable'
|
|
],
|
|
'ExpressibleByStmtBuildable': [
|
|
'ExpressibleByCodeBlockItem',
|
|
'ExpressibleBySyntaxBuildable'
|
|
],
|
|
'ExpressibleByExprList': [
|
|
'ExpressibleByConditionElement',
|
|
'ExpressibleBySyntaxBuildable'
|
|
]
|
|
}
|