effect-analyzer 0.1.2 → 0.1.3
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.
- package/dist/{analyze-a8PswlPG.d.cts → analyze-BXCwo5MU.d.cts} +2 -0
- package/dist/{analyze-a8PswlPG.d.ts → analyze-BXCwo5MU.d.ts} +2 -0
- package/dist/cli.js +76 -76
- package/dist/effect-workflow.cjs +3 -3
- package/dist/effect-workflow.cjs.map +1 -1
- package/dist/effect-workflow.d.cts +2 -2
- package/dist/effect-workflow.d.ts +2 -2
- package/dist/effect-workflow.js +3 -3
- package/dist/effect-workflow.js.map +1 -1
- package/dist/index.cjs +79 -74
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +80 -75
- package/dist/index.js.map +1 -1
- package/dist/lsp/server.js +1366 -1186
- package/package.json +1 -1
|
@@ -56,6 +56,8 @@ interface StaticBaseNode {
|
|
|
56
56
|
readonly displayName?: string | undefined;
|
|
57
57
|
/** Semantic role classification for styling and filtering */
|
|
58
58
|
readonly semanticRole?: SemanticRole | undefined;
|
|
59
|
+
/** Span name from Effect.withSpan annotation */
|
|
60
|
+
readonly spanName?: string | undefined;
|
|
59
61
|
}
|
|
60
62
|
/**
|
|
61
63
|
* A single Effect operation (yield* or direct call).
|
|
@@ -56,6 +56,8 @@ interface StaticBaseNode {
|
|
|
56
56
|
readonly displayName?: string | undefined;
|
|
57
57
|
/** Semantic role classification for styling and filtering */
|
|
58
58
|
readonly semanticRole?: SemanticRole | undefined;
|
|
59
|
+
/** Span name from Effect.withSpan annotation */
|
|
60
|
+
readonly spanName?: string | undefined;
|
|
59
61
|
}
|
|
60
62
|
/**
|
|
61
63
|
* A single Effect operation (yield* or direct call).
|