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 2675070 commit 66c1f03Copy full SHA for 66c1f03
1 file changed
unified/extractor/src/languages/swift/swift.rs
@@ -77,7 +77,7 @@ fn translation_rules() -> Vec<yeast::Rule> {
77
rule!((prefix_expression operation: @op target: @operand) => (unary_expr operator: (prefix_operator #{op}) operand: {operand})),
78
// Postfix unary operators
79
rule!((postfix_expression operation: @op target: @operand) => (unary_expr operator: (postfix_operator #{op}) operand: {operand})),
80
- // Parenthesised single-value tuple is a grouping expression; pass through.
+ // TODO: Parenthesised single-value tuple is a grouping expression and should pass through.
81
// Multi-value tuples become tuple_expr.
82
rule!((tuple_expression value: _* @v) => (tuple_expr element: {..v})),
83
// Blocks contain statement* directly.
0 commit comments