func isDistributed()

in FishyTransport/Sources/FishyActorsGenerator/Analysis.swift [162:174]


  func isDistributed(_ node: FunctionDeclSyntax) -> Bool {
    guard let mods = node.modifiers else {
      return false
    }

    for mod in mods {
      if mod.name.text ==  "distributed" {
        return true
      }
    }

    return false
  }