Skip to content

Commit 648e329

Browse files
committed
Rename _InstructionCounter in SwiftParserCLI to InstructionCounter
1 parent aaa78ba commit 648e329

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

SwiftParserCLI/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ let package = Package(
1616
],
1717
targets: [
1818
.target(
19-
name: "_InstructionCounter"
19+
name: "InstructionCounter"
2020
),
2121

2222
.executableTarget(
2323
name: "swift-parser-cli",
2424
dependencies: [
25-
"_InstructionCounter",
25+
"InstructionCounter",
2626
.product(name: "SwiftBasicFormat", package: "swift-syntax"),
2727
.product(name: "SwiftDiagnostics", package: "swift-syntax"),
2828
.product(name: "SwiftOperators", package: "swift-syntax"),

SwiftParserCLI/Sources/swift-parser-cli/Commands/PerformanceTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
import _InstructionCounter
13+
import InstructionCounter
1414
import ArgumentParser
1515
import Foundation
1616
import SwiftParser

SwiftParserCLI/Sources/swift-parser-cli/swift-parser-cli.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
import _InstructionCounter
13+
import InstructionCounter
1414
import SwiftDiagnostics
1515
import SwiftSyntax
1616
import SwiftParser

0 commit comments

Comments
 (0)