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 441be20 commit a283c96Copy full SHA for a283c96
Examples/Sources/MacroExamples/Implementation/Accessor/EnvironmentValueMacro.swift
@@ -26,10 +26,10 @@ public struct EnvironmentValueMacro: AccessorMacro {
26
27
return [
28
"""
29
- get { self[\(raw: argument.expression)] }
+ get { self[\(argument.expression)] }
30
""",
31
32
- set { self[\(raw: argument.expression)] = newValue }
+ set { self[\(argument.expression)] = newValue }
33
34
]
35
}
0 commit comments