+4
-1
Sources/PterodactylBuild/Keys.swift
+4
-1
Sources/PterodactylBuild/Keys.swift
+4
-4
Sources/PterodactylBuild/Keys/Blob-local operations/BlobContents.swift
Sources/PterodactylBuild/Keys/Blob/ReadContents.swift
+4
-4
Sources/PterodactylBuild/Keys/Blob-local operations/BlobContents.swift
Sources/PterodactylBuild/Keys/Blob/ReadContents.swift
+21
-19
Sources/PterodactylBuild/Keys/Blob-local operations/BlobImports.swift
Sources/PterodactylBuild/Keys/Blob/ParseImports.swift
+21
-19
Sources/PterodactylBuild/Keys/Blob-local operations/BlobImports.swift
Sources/PterodactylBuild/Keys/Blob/ParseImports.swift
······
······
-26
Sources/PterodactylBuild/Keys/Blob-local operations/BlobSyntaxTree.swift
-26
Sources/PterodactylBuild/Keys/Blob-local operations/BlobSyntaxTree.swift
···
···
+6
-6
Sources/PterodactylBuild/Keys/Blob-local operations/BlobTokens.swift
Sources/PterodactylBuild/Keys/Blob/Tokenise.swift
+6
-6
Sources/PterodactylBuild/Keys/Blob-local operations/BlobTokens.swift
Sources/PterodactylBuild/Keys/Blob/Tokenise.swift
···
···
Sources/PterodactylBuild/Keys/Blob-local operations/README.md
Sources/PterodactylBuild/Keys/Blob/README.md
Sources/PterodactylBuild/Keys/Blob-local operations/README.md
Sources/PterodactylBuild/Keys/Blob/README.md
+23
Sources/PterodactylBuild/Keys/Blob/GetLineMap.swift
+23
Sources/PterodactylBuild/Keys/Blob/GetLineMap.swift
···
···
+26
Sources/PterodactylBuild/Keys/Blob/ParseDocument.swift
+26
Sources/PterodactylBuild/Keys/Blob/ParseDocument.swift
···
···
+8
-7
Sources/PterodactylBuild/Keys/DependencyGraphOfSourceTree.swift
Sources/PterodactylBuild/Keys/SourceTree/GetDependencyGraph.swift
+8
-7
Sources/PterodactylBuild/Keys/DependencyGraphOfSourceTree.swift
Sources/PterodactylBuild/Keys/SourceTree/GetDependencyGraph.swift
···-static let versionDependencies: [any FXVersioning.Type] = [Keys.UnitMapOfSourceTree.self, Keys.BlobImports.self]
···+static let versionDependencies: [any FXVersioning.Type] = [Keys.SourceTree.GetUnitMap.self, Keys.Blob.ParseImports.self]
+7
-7
Sources/PterodactylBuild/Keys/NarrowSourceTree.swift
Sources/PterodactylBuild/Keys/SourceTree/NarrowToUnit.swift
+7
-7
Sources/PterodactylBuild/Keys/NarrowSourceTree.swift
Sources/PterodactylBuild/Keys/SourceTree/NarrowToUnit.swift
···-static let versionDependencies: [any FXVersioning.Type] = [TransitiveDependencies.self, UnitMapOfSourceTree.self]-let dependencies = try await ctx.request(TransitiveDependencies(sourceTreeId: sourceTreeId, unitName: unitName))
···+static let versionDependencies: [any FXVersioning.Type] = [GetDependencies.self, GetUnitMap.self]+let dependencies = try await ctx.request(GetDependencies(sourceTreeId: sourceTreeId, unitName: unitName))
+6
-6
Sources/PterodactylBuild/Keys/TransitiveDependencies.swift
Sources/PterodactylBuild/Keys/SourceTree/GetDependencies.swift
+6
-6
Sources/PterodactylBuild/Keys/TransitiveDependencies.swift
Sources/PterodactylBuild/Keys/SourceTree/GetDependencies.swift
···-static let versionDependencies: [any FXVersioning.Type] = [Keys.DependencyGraphOfSourceTree.self]-let graph = try await ctx.request(Keys.DependencyGraphOfSourceTree(sourceTreeId: sourceTreeId))
···+static let versionDependencies: [any FXVersioning.Type] = [Keys.SourceTree.GetDependencyGraph.self]+let graph = try await ctx.request(Keys.SourceTree.GetDependencyGraph(sourceTreeId: sourceTreeId))
+4
-3
Sources/PterodactylBuild/Keys/UnitMapOfSourceTree.swift
Sources/PterodactylBuild/Keys/SourceTree/GetUnitMap.swift
+4
-3
Sources/PterodactylBuild/Keys/UnitMapOfSourceTree.swift
Sources/PterodactylBuild/Keys/SourceTree/GetUnitMap.swift
···
···
+2
-2
Tests/PterodactylBuildTests/Test.swift
+2
-2
Tests/PterodactylBuildTests/Test.swift
···-let dependencyGraph = try await engine.build(key: Keys.DependencyGraphOfSourceTree(sourceTreeId: treeID), ctx).get()···-let dependenciesOfBaz = try await engine.build(key: Keys.TransitiveDependencies(sourceTreeId: treeID, unitName: baz), ctx).get()
···+let dependencyGraph = try await engine.build(key: Keys.SourceTree.GetDependencyGraph(sourceTreeId: treeID), ctx).get()···+let dependenciesOfBaz = try await engine.build(key: Keys.SourceTree.GetDependencies(sourceTreeId: treeID, unitName: baz), ctx).get()