Implement Binary Operators and Grouping (in Expressions)

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-23 07:55:11 -04:00
parent 7c35b2b6e5
commit 2861a82777
7 changed files with 420 additions and 15 deletions
+2 -1
View File
@@ -20,7 +20,8 @@ import SwiftSyntax
@_spi(ExperimentalLanguageFeature) import SwiftSyntaxMacros
public func remove_embedded_quotes(_ from: String) -> String {
return from.replacing("\"", with: [])
let result = from.replacing("\"", with: [])
return result
}
struct MacroError: Error, CustomStringConvertible {