@effect-agent/pr-review 0.1.0-beta.8 → 0.1.0-beta.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/NOTICE +26 -0
  2. package/README.md +170 -158
  3. package/dist/Review.d.mts +295 -0
  4. package/dist/Review.mjs +704 -0
  5. package/dist/Review.mjs.map +1 -0
  6. package/dist/ReviewRepository-Wd_4qCaO.d.mts +71 -0
  7. package/dist/ReviewRepository.d.mts +2 -0
  8. package/dist/ReviewRepository.mjs +15 -0
  9. package/dist/ReviewRepository.mjs.map +1 -0
  10. package/dist/index.d.mts +3 -716
  11. package/dist/index.mjs +3 -66
  12. package/dist/repository-BzSG74vX.mjs +101 -0
  13. package/dist/repository-BzSG74vX.mjs.map +1 -0
  14. package/dist/rolldown-runtime-D7D4PA-g.mjs +13 -0
  15. package/package.json +1 -54
  16. package/src/Review.ts +1058 -0
  17. package/src/ReviewRepository.ts +9 -0
  18. package/src/index.ts +2 -20
  19. package/src/internal/repository.ts +156 -0
  20. package/dist/action.d.mts +0 -185
  21. package/dist/action.mjs +0 -406
  22. package/dist/action.mjs.map +0 -1
  23. package/dist/cli.d.mts +0 -1
  24. package/dist/cli.mjs +0 -102
  25. package/dist/cli.mjs.map +0 -1
  26. package/dist/fan-out-BBEATQwc.d.mts +0 -997
  27. package/dist/github-BZNzmxao.mjs +0 -1372
  28. package/dist/github-BZNzmxao.mjs.map +0 -1
  29. package/dist/index.mjs.map +0 -1
  30. package/dist/providers-J6BKHyHe.mjs +0 -986
  31. package/dist/providers-J6BKHyHe.mjs.map +0 -1
  32. package/dist/testing.d.mts +0 -131
  33. package/dist/testing.mjs +0 -228
  34. package/dist/testing.mjs.map +0 -1
  35. package/src/action.ts +0 -666
  36. package/src/cli.ts +0 -213
  37. package/src/internal/action-entry.ts +0 -41
  38. package/src/internal/coverage.ts +0 -245
  39. package/src/internal/diff.ts +0 -134
  40. package/src/internal/effort.ts +0 -86
  41. package/src/internal/factory.ts +0 -374
  42. package/src/internal/fan-out-scripted.ts +0 -164
  43. package/src/internal/fan-out.ts +0 -450
  44. package/src/internal/fingerprint.ts +0 -74
  45. package/src/internal/fixtures.ts +0 -127
  46. package/src/internal/github-env.ts +0 -128
  47. package/src/internal/github.ts +0 -531
  48. package/src/internal/ignore.ts +0 -88
  49. package/src/internal/profiles.ts +0 -79
  50. package/src/internal/providers.ts +0 -91
  51. package/src/internal/render.ts +0 -428
  52. package/src/internal/review-agent.ts +0 -385
  53. package/src/internal/review-state.ts +0 -488
  54. package/src/internal/review-units.ts +0 -167
  55. package/src/internal/run.ts +0 -397
  56. package/src/internal/scripted.ts +0 -108
  57. package/src/internal/source.ts +0 -110
  58. package/src/testing.ts +0 -8
@@ -0,0 +1,295 @@
1
+ import { i as ReviewRepository, n as ReviewContextError, o as ReviewSearchResult, r as ReviewFileList, s as ReviewSource } from "./ReviewRepository-Wd_4qCaO.mjs";
2
+ import { Effect, Layer, Schema } from "effect";
3
+ import * as Agent from "effect-agent/Agent";
4
+ import * as AgentRuntime from "effect-agent/AgentRuntime";
5
+ import { ContextCompactor } from "effect-agent/ContextCompactor";
6
+ import { IdGenerator } from "effect-agent/IdGenerator";
7
+ import { RunCostEstimator } from "effect-agent/RunOptions";
8
+ import { ThreadHistory } from "effect-agent/ThreadHistory";
9
+ import { LanguageModel, Model, Tool } from "effect/unstable/ai";
10
+ declare namespace Review_d_exports {
11
+ export { MAX_REVIEW_FILES, MAX_REVIEW_PATCH_CHARS, MAX_REVIEW_TOTAL_PATCH_CHARS, ReviewCategory, ReviewChange, ReviewCompaction, ReviewCompactionEvent, ReviewContextTokenLimit, ReviewCostControl, ReviewCostSnapshot, ReviewFinding, ReviewFollowUp, ReviewOutcome, ReviewReport, ReviewRequest, ReviewResearchConcurrency, ReviewResearchStats, ReviewResolution, ReviewSeverity, ReviewUsage, ReviewVerificationError, ReviewerOptions, isCommentableLine, makeReviewer };
12
+ }
13
+ /** Host admission bounds, independent of the model's working context. */
14
+ declare const MAX_REVIEW_FILES = 1000;
15
+ declare const MAX_REVIEW_PATCH_CHARS = 2000000;
16
+ declare const MAX_REVIEW_TOTAL_PATCH_CHARS = 8000000;
17
+ /** Native strategies share the same review ledger and execution budgets. */
18
+ declare const ReviewCompaction: Schema.Literals<readonly ["prune", "rollover"]>;
19
+ type ReviewCompaction = typeof ReviewCompaction.Type;
20
+ /** Working-context bound for pressure experiments; it never widens host input admission. */
21
+ declare const ReviewContextTokenLimit: Schema.Int;
22
+ /** Emitted native compaction evidence, without source, summaries, or handoff text. */
23
+ declare const ReviewCompactionEvent: Schema.Struct<{
24
+ readonly kind: Schema.Literals<readonly ["clear-tool-results", "summarize", "rollover"]>;
25
+ readonly turn: Schema.Int;
26
+ readonly tokensBeforeEstimate: Schema.Natural;
27
+ readonly tokensAfterEstimate: Schema.Natural;
28
+ }>;
29
+ type ReviewCompactionEvent = typeof ReviewCompactionEvent.Type;
30
+ declare const ReviewResearchConcurrency: Schema.Literals<readonly [1, 2]>;
31
+ /** Measured native delegation events and incomplete child results; contains no child prose. */
32
+ declare const ReviewResearchStats: Schema.Struct<{
33
+ readonly delegations: Schema.Natural;
34
+ readonly started: Schema.Natural;
35
+ readonly completed: Schema.Natural;
36
+ readonly failed: Schema.Natural;
37
+ readonly interrupted: Schema.Natural;
38
+ readonly incomplete: Schema.Natural;
39
+ }>;
40
+ declare const ReviewChange_base: Schema.Class<ReviewChange, Schema.Struct<{
41
+ readonly path: Schema.NonEmptyString;
42
+ readonly patch: Schema.NonEmptyString;
43
+ }>, {}>;
44
+ /** One complete textual patch supplied by the host. */
45
+ declare class ReviewChange extends ReviewChange_base {}
46
+ declare const ReviewFollowUp_base: Schema.Class<ReviewFollowUp, Schema.Struct<{
47
+ readonly id: Schema.NonEmptyString;
48
+ readonly description: Schema.NonEmptyString;
49
+ }>, {}>;
50
+ /** Complete prior feedback selected by the host for fix verification, not new defect discovery. */
51
+ declare class ReviewFollowUp extends ReviewFollowUp_base {}
52
+ declare const ReviewResolution_base: Schema.Class<ReviewResolution, Schema.Struct<{
53
+ readonly id: Schema.NonEmptyString;
54
+ readonly evidence: Schema.NonEmptyString;
55
+ }>, {}>;
56
+ /** A positive, source-backed assessment. The host still owns authorization and publication. */
57
+ declare class ReviewResolution extends ReviewResolution_base {}
58
+ declare const ReviewRequest_base: Schema.Class<ReviewRequest, Schema.Struct<{
59
+ readonly title: Schema.String;
60
+ readonly description: Schema.String;
61
+ readonly baseRevision: Schema.NonEmptyString;
62
+ readonly headRevision: Schema.NonEmptyString;
63
+ readonly scope: Schema.optionalKey<Schema.Literals<readonly ["full", "incremental"]>>;
64
+ readonly changes: Schema.$Array<typeof ReviewChange>;
65
+ readonly unreviewedPaths: Schema.$Array<Schema.NonEmptyString>;
66
+ readonly followUps: Schema.optionalKey<Schema.$Array<typeof ReviewFollowUp>>;
67
+ }>, {}>;
68
+ /** The provider-neutral input to one review pass. */
69
+ declare class ReviewRequest extends ReviewRequest_base {}
70
+ declare const ReviewSeverity: Schema.Literals<readonly ["blocking", "important", "nit"]>;
71
+ type ReviewSeverity = typeof ReviewSeverity.Type;
72
+ /** A model-claimed problem kind used only to label findings for readers. */
73
+ declare const ReviewCategory: Schema.Literals<readonly ["correctness", "security", "concurrency", "performance", "resources", "reliability", "error-handling", "testing", "maintainability", "docs"]>;
74
+ type ReviewCategory = typeof ReviewCategory.Type;
75
+ declare const ReviewFinding_base: Schema.Class<ReviewFinding, Schema.Struct<{
76
+ readonly path: Schema.NonEmptyString;
77
+ readonly line: Schema.optionalKey<Schema.Int>;
78
+ readonly severity: Schema.Literals<readonly ["blocking", "important", "nit"]>;
79
+ /** Presentation label only; it never changes review admission or failure policy. */
80
+ readonly category: Schema.Literals<readonly ["correctness", "security", "concurrency", "performance", "resources", "reliability", "error-handling", "testing", "maintainability", "docs"]>;
81
+ readonly title: Schema.NonEmptyString;
82
+ readonly body: Schema.NonEmptyString;
83
+ }>, {}>;
84
+ /** One actionable defect. `line` is a RIGHT-side line in the supplied patch. */
85
+ declare class ReviewFinding extends ReviewFinding_base {}
86
+ declare const ReviewReport_base: Schema.Class<ReviewReport, Schema.Struct<{
87
+ readonly summary: Schema.NonEmptyString;
88
+ readonly findings: Schema.$Array<typeof ReviewFinding>;
89
+ }>, {}>;
90
+ /** Host-validated findings with a host-authored summary of the reviewed scope. */
91
+ declare class ReviewReport extends ReviewReport_base {}
92
+ declare const ReviewUsage_base: Schema.Class<ReviewUsage, Schema.Struct<{
93
+ readonly inputTokens: Schema.Natural;
94
+ readonly uncachedInputTokens: Schema.Natural;
95
+ readonly cachedInputTokens: Schema.Natural;
96
+ readonly cacheWriteInputTokens: Schema.Natural;
97
+ readonly outputTokens: Schema.Natural;
98
+ readonly estimatedCostMicrousd: Schema.optionalKey<Schema.Natural>;
99
+ /** Maximum additional charge for sent requests whose usage remains unknown. */
100
+ readonly reservedCostMicrousd: Schema.optionalKey<Schema.Natural>;
101
+ }>, {}>;
102
+ declare class ReviewUsage extends ReviewUsage_base {}
103
+ declare const ReviewCostSnapshot_base: Schema.Class<ReviewCostSnapshot, Schema.Struct<{
104
+ /** Spending admission stopped; distinct from the per-request input-token limit. */
105
+ readonly stopped: Schema.Boolean;
106
+ /** The host refused a counted input before paid inference. */
107
+ readonly inputLimitExceeded: Schema.optionalKey<Schema.Literal<true>>;
108
+ /** Admitted provider attempts, including failed or still-unmetered requests. */
109
+ readonly modelCalls: Schema.Natural;
110
+ readonly usage: typeof ReviewUsage;
111
+ }>, {}>;
112
+ /** Host accounting covers every provider attempt, including compaction and failed requests. */
113
+ declare class ReviewCostSnapshot extends ReviewCostSnapshot_base {}
114
+ /**
115
+ * A host must reserve the full possible charge before provider I/O. If admission
116
+ * stops, the reviewer delivers recorded findings without another model request.
117
+ * This port reports that decision; it does not enforce a spending limit itself.
118
+ * Supplying it replaces the cumulative token quota with the host's admission;
119
+ * per-context, turn, tool, and duration limits still apply. Accounted attempts
120
+ * return incomplete outcomes on expected failure, even without findings.
121
+ * Input-token refusals also return incomplete outcomes without a paid attempt.
122
+ * Capped hosts own model-visible spending feedback at their provider boundary;
123
+ * the reviewer's generic turn/tool status is disabled for these runs.
124
+ */
125
+ interface ReviewCostControl {
126
+ readonly snapshot: Effect.Effect<ReviewCostSnapshot>;
127
+ }
128
+ declare const ReviewOutcome_base: Schema.Class<ReviewOutcome, Schema.Struct<{
129
+ readonly report: typeof ReviewReport;
130
+ readonly turns: Schema.Natural;
131
+ readonly usage: typeof ReviewUsage;
132
+ /** Admitted paths with diff ranges never supplied to the model, including partially read files. */
133
+ readonly pendingPaths: Schema.optionalKey<Schema.$Array<Schema.NonEmptyString>>;
134
+ /** A constrained final answer preserves findings but cannot establish complete coverage. */
135
+ readonly exhausted: Schema.optionalKey<Schema.Literals<readonly ["tokens", "tool-calls", "turns", "cost"]>>;
136
+ /** Unfinished coverage, reported by the model or caused by failure or the report capacity bound. */
137
+ readonly incomplete: Schema.optionalKey<Schema.Literal<true>>;
138
+ /** Specific missing evidence reported after all admitted diff ranges were delivered. */
139
+ readonly blockedOn: Schema.optionalKey<Schema.NonEmptyString>;
140
+ /** Only returned after complete coverage, with identifiers drawn from the supplied follow-ups. */
141
+ readonly resolutions: Schema.optionalKey<Schema.$Array<typeof ReviewResolution>>;
142
+ /** Present for measured runs, including an empty array when no native event was emitted. */
143
+ readonly compactions: Schema.optionalKey<Schema.$Array<Schema.Struct<{
144
+ readonly kind: Schema.Literals<readonly ["clear-tool-results", "summarize", "rollover"]>;
145
+ readonly turn: Schema.Int;
146
+ readonly tokensBeforeEstimate: Schema.Natural;
147
+ readonly tokensAfterEstimate: Schema.Natural;
148
+ }>>>;
149
+ readonly research: Schema.optionalKey<Schema.Struct<{
150
+ readonly delegations: Schema.Natural;
151
+ readonly started: Schema.Natural;
152
+ readonly completed: Schema.Natural;
153
+ readonly failed: Schema.Natural;
154
+ readonly interrupted: Schema.Natural;
155
+ readonly incomplete: Schema.Natural;
156
+ }>>;
157
+ /** Accepted working-note replacements; the note text stays inside the review's Scope. */
158
+ readonly notesUpdates: Schema.optionalKey<Schema.Natural>;
159
+ }>, {}>;
160
+ declare class ReviewOutcome extends ReviewOutcome_base {}
161
+ declare const ReviewVerificationError_base: Schema.Class<ReviewVerificationError, Schema.TaggedStruct<"ReviewVerificationError", {
162
+ readonly message: Schema.String;
163
+ }>, import("effect/Cause").YieldableError>;
164
+ declare class ReviewVerificationError extends ReviewVerificationError_base {}
165
+ declare const isCommentableLine: (patch: string, line: number) => boolean;
166
+ interface ReviewerOptions<Provider, ModelProvides, ModelRequires> {
167
+ readonly model: Model.Model<Provider, LanguageModel.LanguageModel | ModelProvides, ModelRequires>;
168
+ readonly guidance?: string | undefined;
169
+ readonly estimateCostMicrousd?: RunCostEstimator | undefined;
170
+ readonly costControl?: ReviewCostControl | undefined;
171
+ readonly compaction?: ReviewCompaction | undefined;
172
+ readonly contextTokenLimit?: number | undefined;
173
+ readonly research?: {
174
+ readonly model: Model.Model<Provider, LanguageModel.LanguageModel | ModelProvides, ModelRequires>;
175
+ readonly concurrency?: typeof ReviewResearchConcurrency.Type | undefined;
176
+ } | undefined;
177
+ }
178
+ /** One navigable review with a complete change index and bounded evidence tools. */
179
+ declare const makeReviewer: <Provider, ModelProvides, ModelRequires>(options: ReviewerOptions<Provider, ModelProvides, ModelRequires>) => {
180
+ readonly review: (request: ReviewRequest) => Effect.Effect<ReviewOutcome, import("@effect-agent/core/AgentError").AgentApprovalDenied | import("@effect-agent/core/AgentError").AgentApprovalPending | AgentRuntime.AgentChildPending | import("@effect-agent/core/AgentError").AgentInputError | import("@effect-agent/core/AgentError").AgentOutputError | import("@effect-agent/core/AgentError").AgentPolicyError | import("@effect-agent/core/AgentError").AgentToolAuthorizationDenied | import("effect/unstable/ai/AiError").AiError | import("effect-agent/RunHooks").BudgetAdapterError | import("effect-agent/Budget").BudgetExceeded | import("effect-agent/ContextCompactor").CompactionError | import("@effect-agent/core/AgentError").ContextBudgetError | import("@effect-agent/core/AgentError").ContextOverflowError | import("@effect-agent/core/MemoryReference").MemoryRecallError | import("@effect-agent/core/AgentError").ModelProtocolError | ReviewVerificationError | AgentRuntime.SubagentDurabilityError | import("effect-agent/ThreadHistory").ThreadHistoryError | AgentRuntime.ToolCallWaiting, ReviewRepository | Exclude<Exclude<Exclude<Exclude<Exclude<Exclude<ModelRequires, AgentRuntime.EngineProvidedToolServices>, import("effect-agent/RunOptions").RunContextPreparation | ThreadHistory>, ContextCompactor | Tool.Handler<"finish_research"> | Tool.Handler<"record_finding"> | import("effect-agent/SubagentReservations").SubagentReservations>, ContextCompactor>, ContextCompactor | IdGenerator | import("effect-agent/RunOptions").RunContextPreparation | ThreadHistory | Tool.HandlersFor<{
181
+ readonly find_files: Tool.Tool<"find_files", {
182
+ readonly parameters: Schema.Struct<{
183
+ readonly query: Schema.String;
184
+ readonly revision: Schema.Literals<readonly ["base", "head"]>;
185
+ }>;
186
+ readonly success: typeof ReviewFileList;
187
+ readonly failure: typeof ReviewContextError;
188
+ readonly failureMode: "return";
189
+ }, never>;
190
+ readonly read_file: Tool.Tool<"read_file", {
191
+ readonly parameters: Schema.Struct<{
192
+ readonly path: Schema.NonEmptyString;
193
+ readonly revision: Schema.Literals<readonly ["base", "head"]>;
194
+ readonly startLine: Schema.Int;
195
+ readonly lineCount: Schema.Int;
196
+ }>;
197
+ readonly success: typeof ReviewSource;
198
+ readonly failure: typeof ReviewContextError;
199
+ readonly failureMode: "return";
200
+ }, never>;
201
+ readonly search_code: Tool.Tool<"search_code", {
202
+ readonly parameters: Schema.Struct<{
203
+ readonly query: Schema.NonEmptyString;
204
+ readonly path: Schema.String;
205
+ readonly revision: Schema.Literals<readonly ["base", "head"]>;
206
+ readonly cursor: Schema.Natural;
207
+ }>;
208
+ readonly success: typeof ReviewSearchResult;
209
+ readonly failure: typeof ReviewContextError;
210
+ readonly failureMode: "return";
211
+ }, never>;
212
+ }>>, import("effect/Scope").Scope> | Exclude<Exclude<Exclude<Exclude<Exclude<(Agent.ModelServices extends ModelProvides | LanguageModel.LanguageModel | Model.ModelName | Model.ProviderName ? Model.Model<Provider, ModelProvides | LanguageModel.LanguageModel, ModelRequires> : never) extends (infer T_1) ? T_1 extends (Agent.ModelServices extends ModelProvides | LanguageModel.LanguageModel | Model.ModelName | Model.ProviderName ? Model.Model<Provider, ModelProvides | LanguageModel.LanguageModel, ModelRequires> : never) ? T_1 extends Layer.Layer<infer _Provides, infer _Error, infer Services> ? Services : never : never : never, AgentRuntime.EngineProvidedToolServices>, Tool.Handler<"delegate_research"> | Tool.Handler<"record_finding"> | Tool.Handler<"submit_review"> | Tool.HandlersFor<{
213
+ readonly new_context: Tool.Tool<"new_context", {
214
+ readonly parameters: Schema.Struct<{
215
+ readonly handoff: Schema.optionalKey<Schema.NonEmptyString>;
216
+ }>;
217
+ readonly success: Schema.Struct<{
218
+ readonly handoff: Schema.optionalKey<Schema.NonEmptyString>;
219
+ }>;
220
+ readonly failure: Schema.Never;
221
+ readonly failureMode: "error";
222
+ }, never>;
223
+ readonly read_diff: Tool.Tool<"read_diff", {
224
+ readonly parameters: Schema.Struct<{
225
+ readonly offset: Schema.Natural;
226
+ }>;
227
+ readonly success: Schema.Struct<{
228
+ readonly offset: Schema.Natural;
229
+ readonly content: Schema.String;
230
+ readonly nextOffset: Schema.NullOr<Schema.Natural>;
231
+ readonly totalChars: Schema.Natural;
232
+ }>;
233
+ readonly failure: typeof ReviewVerificationError;
234
+ readonly failureMode: "return";
235
+ }, never>;
236
+ readonly review_status: Tool.Tool<"review_status", {
237
+ readonly parameters: Schema.Struct<{
238
+ readonly cursor: Schema.optionalKey<Schema.Natural>;
239
+ readonly notes: Schema.optionalKey<Schema.Struct<{
240
+ readonly text: Schema.String;
241
+ readonly expectedRevision: Schema.Natural;
242
+ }>>;
243
+ }>;
244
+ readonly success: Schema.Struct<{
245
+ readonly pending: Schema.$Array<Schema.Struct<{
246
+ readonly path: Schema.NonEmptyString;
247
+ readonly offset: Schema.Natural;
248
+ }>>;
249
+ readonly pendingCount: Schema.Natural;
250
+ readonly findings: Schema.$Array<typeof ReviewFinding>;
251
+ readonly notes: Schema.Struct<{
252
+ readonly text: Schema.String;
253
+ readonly revision: Schema.Natural;
254
+ }>;
255
+ }>;
256
+ readonly failure: typeof ReviewVerificationError;
257
+ readonly failureMode: "return";
258
+ }, never>;
259
+ }>>, ContextCompactor>, ContextCompactor | IdGenerator | import("effect-agent/RunOptions").RunContextPreparation | ThreadHistory | Tool.HandlersFor<{
260
+ readonly find_files: Tool.Tool<"find_files", {
261
+ readonly parameters: Schema.Struct<{
262
+ readonly query: Schema.String;
263
+ readonly revision: Schema.Literals<readonly ["base", "head"]>;
264
+ }>;
265
+ readonly success: typeof ReviewFileList;
266
+ readonly failure: typeof ReviewContextError;
267
+ readonly failureMode: "return";
268
+ }, never>;
269
+ readonly read_file: Tool.Tool<"read_file", {
270
+ readonly parameters: Schema.Struct<{
271
+ readonly path: Schema.NonEmptyString;
272
+ readonly revision: Schema.Literals<readonly ["base", "head"]>;
273
+ readonly startLine: Schema.Int;
274
+ readonly lineCount: Schema.Int;
275
+ }>;
276
+ readonly success: typeof ReviewSource;
277
+ readonly failure: typeof ReviewContextError;
278
+ readonly failureMode: "return";
279
+ }, never>;
280
+ readonly search_code: Tool.Tool<"search_code", {
281
+ readonly parameters: Schema.Struct<{
282
+ readonly query: Schema.NonEmptyString;
283
+ readonly path: Schema.String;
284
+ readonly revision: Schema.Literals<readonly ["base", "head"]>;
285
+ readonly cursor: Schema.Natural;
286
+ }>;
287
+ readonly success: typeof ReviewSearchResult;
288
+ readonly failure: typeof ReviewContextError;
289
+ readonly failureMode: "return";
290
+ }, never>;
291
+ }>>, import("effect/Scope").Scope>>;
292
+ };
293
+ //#endregion
294
+ export { MAX_REVIEW_FILES, MAX_REVIEW_PATCH_CHARS, MAX_REVIEW_TOTAL_PATCH_CHARS, ReviewCategory, ReviewChange, ReviewCompaction, ReviewCompactionEvent, ReviewContextTokenLimit, ReviewCostControl, ReviewCostSnapshot, ReviewFinding, ReviewFollowUp, ReviewOutcome, ReviewReport, ReviewRequest, ReviewResearchConcurrency, ReviewResearchStats, ReviewResolution, ReviewSeverity, ReviewUsage, ReviewVerificationError, ReviewerOptions, isCommentableLine, makeReviewer, Review_d_exports as t };
295
+ //# sourceMappingURL=Review.d.mts.map