├── .github ├── FUNDING.yml └── workflows │ ├── test.yml │ ├── udd.yml │ ├── update_spm.yml │ └── update_toolchain.yml ├── .gitignore ├── .swift-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── Examples ├── SwiftPackage │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Package.resolved │ ├── Package.swift │ └── Tests │ │ └── ExampleTests │ │ └── ExampleTests.swift └── XcodeProject │ ├── MyApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── MyApp.xcscheme │ ├── MyApp │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── MyApp.entitlements │ ├── MyApp.swift │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── MyAppTests │ └── MyAppTests.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── Playground ├── .dockerignore ├── DEPLOYMENT.md ├── Dockerfile ├── Package.resolved ├── TestModule │ ├── Package.resolved │ ├── Package.swift │ └── Tests │ │ └── TestTarget │ │ └── test.swift ├── backend │ ├── deps.ts │ └── main.ts ├── frontend │ ├── css │ │ └── common.css │ ├── error.html │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ ├── mstile-70x70.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── images │ │ └── ogp_image.png │ ├── index.html │ ├── index.js │ ├── js │ │ ├── app.js │ │ ├── console.js │ │ ├── editor.js │ │ ├── icon.js │ │ ├── textlinesteam.js │ │ ├── ui_control.js │ │ ├── unescape.js │ │ └── websocket.js │ ├── robots.txt │ └── scss │ │ └── default.scss ├── package-lock.json ├── package.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── README.md ├── SECURITY.md ├── Sources ├── PowerAssert │ ├── Console.swift │ ├── Diff.swift │ ├── Macros.swift │ └── PowerAssert.swift ├── PowerAssertPlugin │ ├── PowerAssertMacro.swift │ ├── PowerAssertPlugin.swift │ ├── PowerAssertRewriter.swift │ └── SingleLineFormatter.swift └── StringWidth │ ├── CodePointWidth.swift │ ├── DerivedCoreProperties.swift │ ├── DerivedGeneralCategory.swift │ ├── EastAsianWidth.swift │ ├── GenerateCodePointWidth.swift │ ├── StringWidth.swift │ └── URLSession+Linux.swift ├── Tests ├── AssertTests.swift ├── ConsoleTests.swift ├── DiffTests.swift ├── EmojiPresentationTests.swift ├── ExprSyntaxTests.swift ├── Fixtures.swift ├── Helpers.swift ├── LineDiffTests.swift ├── MacroExpansionTests.swift ├── OutputStyleTests.swift ├── StringWidthTests.swift └── WordDiffTests.swift ├── XcodeCloud ├── XcodeCloud.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── XcodeCloud.xcscheme ├── XcodeCloud │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── XcodeCloud.entitlements │ └── XcodeCloudApp.swift ├── XcodeCloudTests │ └── XcodeCloudTests.swift └── ci_scripts │ └── ci_post_clone.sh ├── bitrise.yml ├── codemagic.yaml └── renovate.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: kishikawakatsumi 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/udd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.github/workflows/udd.yml -------------------------------------------------------------------------------- /.github/workflows/update_spm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.github/workflows/update_spm.yml -------------------------------------------------------------------------------- /.github/workflows/update_toolchain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.github/workflows/update_toolchain.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | swift-5.9-DEVELOPMENT-SNAPSHOT-2024-01-06-a 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Examples/SwiftPackage/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/SwiftPackage/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/SwiftPackage/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/SwiftPackage/Package.resolved -------------------------------------------------------------------------------- /Examples/SwiftPackage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/SwiftPackage/Package.swift -------------------------------------------------------------------------------- /Examples/SwiftPackage/Tests/ExampleTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/SwiftPackage/Tests/ExampleTests/ExampleTests.swift -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/ContentView.swift -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/MyApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/MyApp.entitlements -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/MyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/MyApp.swift -------------------------------------------------------------------------------- /Examples/XcodeProject/MyApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/XcodeProject/MyAppTests/MyAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Examples/XcodeProject/MyAppTests/MyAppTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Package.swift -------------------------------------------------------------------------------- /Playground/.dockerignore: -------------------------------------------------------------------------------- 1 | .build/ 2 | .swiftpm/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Playground/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/DEPLOYMENT.md -------------------------------------------------------------------------------- /Playground/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/Dockerfile -------------------------------------------------------------------------------- /Playground/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/Package.resolved -------------------------------------------------------------------------------- /Playground/TestModule/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/TestModule/Package.resolved -------------------------------------------------------------------------------- /Playground/TestModule/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/TestModule/Package.swift -------------------------------------------------------------------------------- /Playground/TestModule/Tests/TestTarget/test.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Playground/backend/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/backend/deps.ts -------------------------------------------------------------------------------- /Playground/backend/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/backend/main.ts -------------------------------------------------------------------------------- /Playground/frontend/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/css/common.css -------------------------------------------------------------------------------- /Playground/frontend/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/error.html -------------------------------------------------------------------------------- /Playground/frontend/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/browserconfig.xml -------------------------------------------------------------------------------- /Playground/frontend/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/favicon.ico -------------------------------------------------------------------------------- /Playground/frontend/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /Playground/frontend/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /Playground/frontend/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/favicons/site.webmanifest -------------------------------------------------------------------------------- /Playground/frontend/images/ogp_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/images/ogp_image.png -------------------------------------------------------------------------------- /Playground/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/index.html -------------------------------------------------------------------------------- /Playground/frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/index.js -------------------------------------------------------------------------------- /Playground/frontend/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/app.js -------------------------------------------------------------------------------- /Playground/frontend/js/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/console.js -------------------------------------------------------------------------------- /Playground/frontend/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/editor.js -------------------------------------------------------------------------------- /Playground/frontend/js/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/icon.js -------------------------------------------------------------------------------- /Playground/frontend/js/textlinesteam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/textlinesteam.js -------------------------------------------------------------------------------- /Playground/frontend/js/ui_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/ui_control.js -------------------------------------------------------------------------------- /Playground/frontend/js/unescape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/unescape.js -------------------------------------------------------------------------------- /Playground/frontend/js/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/js/websocket.js -------------------------------------------------------------------------------- /Playground/frontend/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Playground/frontend/scss/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/frontend/scss/default.scss -------------------------------------------------------------------------------- /Playground/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/package-lock.json -------------------------------------------------------------------------------- /Playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/package.json -------------------------------------------------------------------------------- /Playground/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/webpack.common.js -------------------------------------------------------------------------------- /Playground/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/webpack.dev.js -------------------------------------------------------------------------------- /Playground/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Playground/webpack.prod.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sources/PowerAssert/Console.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssert/Console.swift -------------------------------------------------------------------------------- /Sources/PowerAssert/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssert/Diff.swift -------------------------------------------------------------------------------- /Sources/PowerAssert/Macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssert/Macros.swift -------------------------------------------------------------------------------- /Sources/PowerAssert/PowerAssert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssert/PowerAssert.swift -------------------------------------------------------------------------------- /Sources/PowerAssertPlugin/PowerAssertMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssertPlugin/PowerAssertMacro.swift -------------------------------------------------------------------------------- /Sources/PowerAssertPlugin/PowerAssertPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssertPlugin/PowerAssertPlugin.swift -------------------------------------------------------------------------------- /Sources/PowerAssertPlugin/PowerAssertRewriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssertPlugin/PowerAssertRewriter.swift -------------------------------------------------------------------------------- /Sources/PowerAssertPlugin/SingleLineFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/PowerAssertPlugin/SingleLineFormatter.swift -------------------------------------------------------------------------------- /Sources/StringWidth/CodePointWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/CodePointWidth.swift -------------------------------------------------------------------------------- /Sources/StringWidth/DerivedCoreProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/DerivedCoreProperties.swift -------------------------------------------------------------------------------- /Sources/StringWidth/DerivedGeneralCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/DerivedGeneralCategory.swift -------------------------------------------------------------------------------- /Sources/StringWidth/EastAsianWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/EastAsianWidth.swift -------------------------------------------------------------------------------- /Sources/StringWidth/GenerateCodePointWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/GenerateCodePointWidth.swift -------------------------------------------------------------------------------- /Sources/StringWidth/StringWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/StringWidth.swift -------------------------------------------------------------------------------- /Sources/StringWidth/URLSession+Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Sources/StringWidth/URLSession+Linux.swift -------------------------------------------------------------------------------- /Tests/AssertTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/AssertTests.swift -------------------------------------------------------------------------------- /Tests/ConsoleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/ConsoleTests.swift -------------------------------------------------------------------------------- /Tests/DiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/DiffTests.swift -------------------------------------------------------------------------------- /Tests/EmojiPresentationTests.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Tests/ExprSyntaxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/ExprSyntaxTests.swift -------------------------------------------------------------------------------- /Tests/Fixtures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/Fixtures.swift -------------------------------------------------------------------------------- /Tests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/Helpers.swift -------------------------------------------------------------------------------- /Tests/LineDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/LineDiffTests.swift -------------------------------------------------------------------------------- /Tests/MacroExpansionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/MacroExpansionTests.swift -------------------------------------------------------------------------------- /Tests/OutputStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/OutputStyleTests.swift -------------------------------------------------------------------------------- /Tests/StringWidthTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/StringWidthTests.swift -------------------------------------------------------------------------------- /Tests/WordDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/Tests/WordDiffTests.swift -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud.xcodeproj/xcshareddata/xcschemes/XcodeCloud.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud.xcodeproj/xcshareddata/xcschemes/XcodeCloud.xcscheme -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/ContentView.swift -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/XcodeCloud.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/XcodeCloud.entitlements -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloud/XcodeCloudApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloud/XcodeCloudApp.swift -------------------------------------------------------------------------------- /XcodeCloud/XcodeCloudTests/XcodeCloudTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/XcodeCloudTests/XcodeCloudTests.swift -------------------------------------------------------------------------------- /XcodeCloud/ci_scripts/ci_post_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/XcodeCloud/ci_scripts/ci_post_clone.sh -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/bitrise.yml -------------------------------------------------------------------------------- /codemagic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/codemagic.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/swift-power-assert/HEAD/renovate.json --------------------------------------------------------------------------------