@formspec/analysis 0.1.0-alpha.20 → 0.1.0-alpha.21
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/analysis.d.ts +69 -450
- package/dist/compiler-signatures.d.ts +48 -0
- package/dist/compiler-signatures.d.ts.map +1 -1
- package/dist/constants.d.ts +2 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/file-snapshots.d.ts +3 -0
- package/dist/file-snapshots.d.ts.map +1 -1
- package/dist/index.cjs +169 -2800
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -19
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +168 -2761
- package/dist/index.js.map +1 -1
- package/dist/internal.cjs +3995 -0
- package/dist/internal.cjs.map +1 -0
- package/dist/internal.d.ts +21 -0
- package/dist/internal.d.ts.map +1 -0
- package/dist/internal.js +3902 -0
- package/dist/internal.js.map +1 -0
- package/dist/perf-tracing.d.ts +16 -0
- package/dist/perf-tracing.d.ts.map +1 -0
- package/dist/protocol.cjs +951 -0
- package/dist/protocol.cjs.map +1 -0
- package/dist/protocol.d.ts +4 -0
- package/dist/protocol.d.ts.map +1 -0
- package/dist/protocol.js +904 -0
- package/dist/protocol.js.map +1 -0
- package/dist/semantic-protocol.d.ts +49 -1
- package/dist/semantic-protocol.d.ts.map +1 -1
- package/dist/tag-registry.d.ts +2 -0
- package/dist/tag-registry.d.ts.map +1 -1
- package/dist/workspace-runtime.d.ts +6 -0
- package/dist/workspace-runtime.d.ts.map +1 -1
- package/package.json +12 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,20 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export type { CommentSourceSpan, CommentSpan, ParseCommentSyntaxOptions, ParsedCommentBlock, ParsedCommentTag, ParsedCommentTargetSpecifier, } from "./comment-syntax.js";
|
|
3
|
-
export type { CommentHoverInfo, CommentCompletionContext, CommentCursorTarget, CommentSemanticContextOptions, CommentTagSemanticContext, EnclosingDocComment, SemanticCommentCompletionContext, } from "./cursor-context.js";
|
|
4
|
-
export { findCommentTagAtOffset, findEnclosingDocComment, getCommentCompletionContextAtOffset, getCommentHoverInfoAtOffset, getCommentCursorTargetAtOffset, getCommentTagSemanticContext, getSemanticCommentCompletionContextAtOffset, getTagCompletionPrefixAtOffset, } from "./cursor-context.js";
|
|
5
|
-
export type { ConstraintTagParseRegistryLike, ParseConstraintTagValueOptions, } from "./tag-value-parser.js";
|
|
6
|
-
export { parseConstraintTagValue, parseDefaultValueTagValue } from "./tag-value-parser.js";
|
|
7
|
-
export { extractPathTarget, formatPathTarget, type ParsedPathTarget } from "./path-target.js";
|
|
8
|
-
export type { AnalysisTypeDefinition, AnalysisTypeRegistry, ConstraintRegistrationLike, ConstraintRegistryLike, ConstraintSemanticRoleLike, ConstraintSemanticDiagnostic, ConstraintTagRegistrationLike, ConstraintTargetAnalysisResult, EffectiveTargetState, ResolvedTargetState, } from "./semantic-targets.js";
|
|
9
|
-
export { analyzeConstraintTargets, buildConstraintTargetStates, collectReferencedTypeAnnotations, collectReferencedTypeConstraints, dereferenceAnalysisType, formatConstraintTargetName, resolveConstraintTargetState, } from "./semantic-targets.js";
|
|
10
|
-
export type { ExtensionConstraintTagSource, ExtensionTagSource, FormSpecPlacement, FormSpecTagCategory, FormSpecTagDefinition, FormSpecTagOverload, FormSpecTagParameter, FormSpecTargetKind, FormSpecValueKind, SemanticCapability, TagDefinition, TagSignature, TagSignatureParameter, } from "./tag-registry.js";
|
|
11
|
-
export { getAllTagDefinitions, getConstraintTagDefinitions, getTagDefinition, getTagHoverMarkdown, normalizeFormSpecTagName, } from "./tag-registry.js";
|
|
12
|
-
export { buildFormSpecAnalysisFileSnapshot, type BuildFormSpecAnalysisFileSnapshotOptions, } from "./file-snapshots.js";
|
|
13
|
-
export { findDeclarationForCommentOffset, getHostType, getLastLeadingDocCommentRange, getSubjectType, } from "./source-bindings.js";
|
|
14
|
-
export type { FormSpecAnalysisCommentSnapshot, FormSpecAnalysisDiagnostic, FormSpecAnalysisFileSnapshot, FormSpecAnalysisManifest, FormSpecAnalysisTagSnapshot, FormSpecIpcEndpoint, FormSpecSemanticQuery, FormSpecSemanticResponse, FormSpecSerializedCommentTargetSpecifier, FormSpecSerializedCompletionContext, FormSpecSerializedHoverInfo, FormSpecSerializedTagDefinition, FormSpecSerializedTagSemanticContext, FormSpecSerializedTagSignature, } from "./semantic-protocol.js";
|
|
15
|
-
export { FORMSPEC_ANALYSIS_PROTOCOL_VERSION, FORMSPEC_ANALYSIS_SCHEMA_VERSION, computeFormSpecTextHash, isFormSpecAnalysisManifest, isFormSpecSemanticQuery, isFormSpecSemanticResponse, serializeCommentTagSemanticContext, serializeCommentTargetSpecifier, serializeCompletionContext, serializeHoverInfo, serializeParsedCommentTag, } from "./semantic-protocol.js";
|
|
16
|
-
export { getFormSpecManifestPath, getFormSpecWorkspaceId, getFormSpecWorkspaceRuntimeDirectory, } from "./workspace-runtime.js";
|
|
17
|
-
export { collectCompatiblePathTargets, getTypeSemanticCapabilities, hasTypeSemanticCapability, resolveDeclarationPlacement, resolvePathTargetType, type FormSpecSemanticCapability, type ResolvedPathTargetType, } from "./ts-binding.js";
|
|
18
|
-
export type { CheckSyntheticTagApplicationOptions, LowerSyntheticTagApplicationOptions, LoweredSyntheticTagApplication, SyntheticCompilerDiagnostic, SyntheticTagCheckResult, SyntheticTagTargetKind, SyntheticTagTargetSpecifier, } from "./compiler-signatures.js";
|
|
19
|
-
export { buildSyntheticHelperPrelude, checkSyntheticTagApplication, getMatchingTagSignatures, lowerTagApplicationToSyntheticCall, } from "./compiler-signatures.js";
|
|
1
|
+
export * from "./protocol.js";
|
|
20
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
|