Skip to content

Commit

Permalink
Rename _InstructionCounter in SwiftParserCLI to InstructionCounter
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWong12 committed Oct 8, 2023
1 parent 264f676 commit 280fc3e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SwiftParserCLI/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ let package = Package(
],
targets: [
.target(
name: "_InstructionCounter"
name: "InstructionCounter"
),

.executableTarget(
name: "swift-parser-cli",
dependencies: [
"_InstructionCounter",
"InstructionCounter",
.product(name: "SwiftBasicFormat", package: "swift-syntax"),
.product(name: "SwiftDiagnostics", package: "swift-syntax"),
.product(name: "SwiftOperators", package: "swift-syntax"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
//
//===----------------------------------------------------------------------===//

import InstructionCounter
import ArgumentParser
import Foundation
import SwiftParser
import SwiftSyntax
import _InstructionCounter

struct PerformanceTest: ParsableCommand {
static var configuration = CommandConfiguration(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@

import ArgumentParser
import Foundation
import InstructionCounter
import SwiftDiagnostics
import SwiftOperators
import SwiftParser
import SwiftParserDiagnostics
import SwiftSyntax
import _InstructionCounter

#if os(Windows)
import WinSDK
Expand Down

0 comments on commit 280fc3e

Please sign in to comment.