Skip to content

Commit

Permalink
Revert "AST: Mark some nodes as Sendable"
Browse files Browse the repository at this point in the history
This reverts commit 5c3a333.
  • Loading branch information
helje5 committed Nov 10, 2024
1 parent f6a7904 commit 7e14ced
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Plugins/Libraries/LighterCodeGenAST/Nodes/Expression.swift
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ public indirect enum Expression: Equatable {
*
* Used as the value for ``Expression/functionCall(_:)``.
*/
public struct FunctionCall: Equatable, Sendable {
public struct FunctionCall: Equatable {

/**
* A parameter passed as part of the function call.
*/
public struct Parameter: Equatable, Sendable {
public struct Parameter: Equatable {

/// The keyword/label of the parameter, can be `nil` if it is a wildcard
/// (unlabled) parameter.
Expand All @@ -108,7 +108,7 @@ public struct FunctionCall: Equatable, Sendable {
/**
* A trailing closure attached to a function call.
*/
public struct TrailingClosure: Equatable, Sendable {
public struct TrailingClosure: Equatable {

/// The parameter list of the trailing closure (e.g. `( a, b ) in`).
public let parameters: [ String ]
Expand Down

0 comments on commit 7e14ced

Please sign in to comment.