Skip to content

Commit 66c1f03

Browse files
committed
Add TODO
1 parent 2675070 commit 66c1f03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • unified/extractor/src/languages/swift

unified/extractor/src/languages/swift/swift.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn translation_rules() -> Vec<yeast::Rule> {
7777
rule!((prefix_expression operation: @op target: @operand) => (unary_expr operator: (prefix_operator #{op}) operand: {operand})),
7878
// Postfix unary operators
7979
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.
80+
// TODO: Parenthesised single-value tuple is a grouping expression and should pass through.
8181
// Multi-value tuples become tuple_expr.
8282
rule!((tuple_expression value: _* @v) => (tuple_expr element: {..v})),
8383
// Blocks contain statement* directly.

0 commit comments

Comments
 (0)