We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6559f5d commit 09a7b24Copy full SHA for 09a7b24
Sources/SwiftSyntax/Raw/RawSyntaxNodes.swift.gyb
@@ -18,14 +18,14 @@
18
//
19
//===----------------------------------------------------------------------===//
20
21
-% for node in SYNTAX_NODES:
+% for node in sorted(SYNTAX_NODES, key=lambda x: x.name):
22
% if node.is_base():
23
@_spi(RawSyntax)
24
public protocol Raw${node.name}NodeProtocol: Raw${node.base_type}NodeProtocol {}
25
% end
26
27
28
29
30
31
public struct Raw${node.name}: Raw${node.name if node.is_base() else node.base_type}NodeProtocol {
0 commit comments