@aiready/core 0.24.22 → 0.24.25

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 (59) hide show
  1. package/dist/chunk-3GCIM6XG.mjs +904 -0
  2. package/dist/chunk-3S5WU6KX.mjs +552 -0
  3. package/dist/chunk-4OMXBYX7.mjs +167 -0
  4. package/dist/chunk-6YWGFKZG.mjs +250 -0
  5. package/dist/chunk-A3BIROBZ.mjs +902 -0
  6. package/dist/chunk-BYMQDORS.mjs +256 -0
  7. package/dist/chunk-CBZNRNEF.mjs +309 -0
  8. package/dist/chunk-ET2WRQSM.mjs +262 -0
  9. package/dist/chunk-F4FTHFHK.mjs +552 -0
  10. package/dist/chunk-G737F72Q.mjs +256 -0
  11. package/dist/chunk-GVFUAIWU.mjs +864 -0
  12. package/dist/chunk-KSEA5XDH.mjs +894 -0
  13. package/dist/chunk-LMIZRJFV.mjs +256 -0
  14. package/dist/chunk-LRPBPWBM.mjs +170 -0
  15. package/dist/chunk-MOTBXU6W.mjs +902 -0
  16. package/dist/chunk-OAH6FVVF.mjs +919 -0
  17. package/dist/chunk-OCM6HLBM.mjs +262 -0
  18. package/dist/chunk-OFBRNGKT.mjs +893 -0
  19. package/dist/chunk-P3KYGPO4.mjs +262 -0
  20. package/dist/chunk-PNWSO6XQ.mjs +250 -0
  21. package/dist/chunk-SO6UKAPR.mjs +164 -0
  22. package/dist/chunk-T2FW6AAF.mjs +552 -0
  23. package/dist/chunk-TQX77RIC.mjs +250 -0
  24. package/dist/chunk-X64EJ3ZO.mjs +314 -0
  25. package/dist/client/index.d.mts +1 -1
  26. package/dist/client/index.d.ts +1 -1
  27. package/dist/client/index.js +32 -5
  28. package/dist/client/index.mjs +1 -1
  29. package/dist/csharp-parser-3CGM6FKB.mjs +9 -0
  30. package/dist/csharp-parser-UWRUYHUH.mjs +9 -0
  31. package/dist/csharp-parser-WIAIE3DD.mjs +9 -0
  32. package/dist/go-parser-AH5QNS4O.mjs +9 -0
  33. package/dist/go-parser-CSAB23BL.mjs +9 -0
  34. package/dist/go-parser-Q3HI32B7.mjs +9 -0
  35. package/dist/index-CL_0jxiJ.d.mts +1315 -0
  36. package/dist/index-CL_0jxiJ.d.ts +1315 -0
  37. package/dist/index-ClwnZa_Y.d.mts +1333 -0
  38. package/dist/index-ClwnZa_Y.d.ts +1333 -0
  39. package/dist/index-DC0cdf0g.d.mts +1321 -0
  40. package/dist/index-DC0cdf0g.d.ts +1321 -0
  41. package/dist/index-DKqKGhcJ.d.mts +1309 -0
  42. package/dist/index-DKqKGhcJ.d.ts +1309 -0
  43. package/dist/index-DNnlhdk0.d.mts +1318 -0
  44. package/dist/index-DNnlhdk0.d.ts +1318 -0
  45. package/dist/index-De2xy_k5.d.mts +1326 -0
  46. package/dist/index-De2xy_k5.d.ts +1326 -0
  47. package/dist/index.d.mts +104 -20
  48. package/dist/index.d.ts +104 -20
  49. package/dist/index.js +581 -147
  50. package/dist/index.mjs +507 -134
  51. package/dist/java-parser-GUKWCEYS.mjs +9 -0
  52. package/dist/java-parser-XTWT5Y5I.mjs +9 -0
  53. package/dist/java-parser-YP5XWLQK.mjs +9 -0
  54. package/dist/python-parser-AOPXUEIV.mjs +8 -0
  55. package/dist/python-parser-FB55P6UA.mjs +8 -0
  56. package/dist/python-parser-WIJPSRKC.mjs +8 -0
  57. package/dist/typescript-parser-5ZWLLMWJ.mjs +7 -0
  58. package/dist/typescript-parser-TWPRLYK6.mjs +7 -0
  59. package/package.json +5 -1
@@ -0,0 +1,262 @@
1
+ import {
2
+ analyzeGeneralMetadata,
3
+ extractParameterNames
4
+ } from "./chunk-3D3I5K5W.mjs";
5
+ import {
6
+ BaseLanguageParser
7
+ } from "./chunk-LRPBPWBM.mjs";
8
+
9
+ // src/parsers/go-parser.ts
10
+ var GoParser = class extends BaseLanguageParser {
11
+ constructor() {
12
+ super(...arguments);
13
+ this.language = "go" /* Go */;
14
+ this.extensions = [".go"];
15
+ }
16
+ getParserName() {
17
+ return "go";
18
+ }
19
+ /**
20
+ * Analyze metadata for a Go node (purity, side effects).
21
+ *
22
+ * @param node - Tree-sitter node to analyze.
23
+ * @param code - Source code for context.
24
+ * @returns Partial ExportInfo containing discovered metadata.
25
+ */
26
+ analyzeMetadata(node, code) {
27
+ return analyzeGeneralMetadata(node, code, {
28
+ sideEffectSignatures: ["<-", "fmt.Print", "fmt.Fprintf", "os.Exit"]
29
+ });
30
+ }
31
+ /**
32
+ * Fallback regex-based parsing when tree-sitter is unavailable.
33
+ *
34
+ * @param code - Source code content.
35
+ * @returns Consolidated ParseResult.
36
+ */
37
+ parseRegex(code) {
38
+ const lines = code.split("\n");
39
+ const exports = [];
40
+ const imports = [];
41
+ const importRegex = /^import\s+"([^"]+)"/;
42
+ const funcRegex = /^func\s+([A-Z][a-zA-Z0-9_]*)\s*\(/;
43
+ const typeRegex = /^type\s+([A-Z][a-zA-Z0-9_]*)\s+(struct|interface)/;
44
+ lines.forEach((line, idx) => {
45
+ const importMatch = line.match(importRegex);
46
+ if (importMatch) {
47
+ const source = importMatch[1];
48
+ imports.push({
49
+ source,
50
+ specifiers: [source.split("/").pop() || source],
51
+ loc: {
52
+ start: { line: idx + 1, column: 0 },
53
+ end: { line: idx + 1, column: line.length }
54
+ }
55
+ });
56
+ }
57
+ const funcMatch = line.match(funcRegex);
58
+ if (funcMatch) {
59
+ const name = funcMatch[1];
60
+ const isPublic = /^[A-Z]/.test(name);
61
+ let docContent;
62
+ const prevLines = lines.slice(Math.max(0, idx - 3), idx);
63
+ for (let i = prevLines.length - 1; i >= 0; i--) {
64
+ const prevLine = prevLines[i].trim();
65
+ if (prevLine.startsWith("//")) {
66
+ const content = prevLine.slice(2).trim();
67
+ docContent = docContent ? content + "\n" + docContent : content;
68
+ } else if (prevLine.endsWith("*/")) {
69
+ const blockMatch = prevLine.match(/\/\*([\s\S]*)\*\//);
70
+ if (blockMatch) docContent = blockMatch[1].trim();
71
+ break;
72
+ } else if (!prevLine) {
73
+ if (docContent) break;
74
+ } else {
75
+ break;
76
+ }
77
+ }
78
+ const isImpure = name.toLowerCase().includes("impure") || line.includes("fmt.Print");
79
+ exports.push({
80
+ name,
81
+ type: "function",
82
+ visibility: isPublic ? "public" : "private",
83
+ isPure: !isImpure,
84
+ hasSideEffects: isImpure,
85
+ documentation: docContent ? { content: docContent, type: "comment" } : void 0,
86
+ loc: {
87
+ start: { line: idx + 1, column: 0 },
88
+ end: { line: idx + 1, column: line.length }
89
+ }
90
+ });
91
+ }
92
+ const typeMatch = line.match(typeRegex);
93
+ if (typeMatch) {
94
+ exports.push({
95
+ name: typeMatch[1],
96
+ type: typeMatch[2] === "struct" ? "class" : "interface",
97
+ visibility: "public",
98
+ isPure: true,
99
+ hasSideEffects: false,
100
+ loc: {
101
+ start: { line: idx + 1, column: 0 },
102
+ end: { line: idx + 1, column: line.length }
103
+ }
104
+ });
105
+ }
106
+ });
107
+ return {
108
+ exports,
109
+ imports,
110
+ language: "go" /* Go */,
111
+ warnings: ["Parser falling back to regex-based analysis"]
112
+ };
113
+ }
114
+ /**
115
+ * Extract import information using AST walk.
116
+ *
117
+ * @param rootNode - Root node of the Go AST.
118
+ * @returns Array of discovered FileImport objects.
119
+ */
120
+ extractImportsAST(rootNode) {
121
+ const imports = [];
122
+ const findImports = (node) => {
123
+ if (node.type === "import_spec") {
124
+ const pathNode = node.children.find(
125
+ (c) => c.type === "interpreted_string_literal"
126
+ );
127
+ if (pathNode) {
128
+ const source = pathNode.text.replace(/"/g, "");
129
+ imports.push({
130
+ source,
131
+ specifiers: [source.split("/").pop() || source],
132
+ loc: {
133
+ start: {
134
+ line: node.startPosition.row + 1,
135
+ column: node.startPosition.column
136
+ },
137
+ end: {
138
+ line: node.endPosition.row + 1,
139
+ column: node.endPosition.column
140
+ }
141
+ }
142
+ });
143
+ }
144
+ }
145
+ for (let i = 0; i < node.childCount; i++) {
146
+ const child = node.child(i);
147
+ if (child) findImports(child);
148
+ }
149
+ };
150
+ findImports(rootNode);
151
+ return imports;
152
+ }
153
+ /**
154
+ * Extract export information (functions, types, vars) using AST walk.
155
+ *
156
+ * @param rootNode - Root node of the Go AST.
157
+ * @param code - Source code for documentation extraction.
158
+ * @returns Array of discovered ExportInfo objects.
159
+ */
160
+ extractExportsAST(rootNode, code) {
161
+ const exports = [];
162
+ const isExported = (name) => {
163
+ return /^[A-Z]/.test(name);
164
+ };
165
+ const traverse = (node) => {
166
+ if (node.type === "function_declaration" || node.type === "method_declaration") {
167
+ const nameNode = node.childForFieldName("name") || node.children.find((c) => c.type === "identifier");
168
+ if (nameNode && isExported(nameNode.text)) {
169
+ const metadata = this.analyzeMetadata(node, code);
170
+ exports.push({
171
+ name: nameNode.text,
172
+ type: "function",
173
+ loc: {
174
+ start: {
175
+ line: node.startPosition.row + 1,
176
+ column: node.startPosition.column
177
+ },
178
+ end: {
179
+ line: node.endPosition.row + 1,
180
+ column: node.endPosition.column
181
+ }
182
+ },
183
+ visibility: "public",
184
+ parameters: this.extractParameters(node),
185
+ ...metadata
186
+ });
187
+ }
188
+ } else if (node.type === "type_spec") {
189
+ const nameNode = node.childForFieldName("name") || node.children.find((c) => c.type === "type_identifier");
190
+ if (nameNode && isExported(nameNode.text)) {
191
+ const metadata = this.analyzeMetadata(node.parent || node, code);
192
+ const type = node.children.some((c) => c.type === "struct_type") ? "class" : "interface";
193
+ exports.push({
194
+ name: nameNode.text,
195
+ type,
196
+ loc: {
197
+ start: {
198
+ line: node.startPosition.row + 1,
199
+ column: node.startPosition.column
200
+ },
201
+ end: {
202
+ line: node.endPosition.row + 1,
203
+ column: node.endPosition.column
204
+ }
205
+ },
206
+ visibility: "public",
207
+ ...metadata
208
+ });
209
+ }
210
+ } else if (node.type === "var_spec" || node.type === "const_spec") {
211
+ const identifiers = node.children.filter(
212
+ (c) => c.type === "identifier"
213
+ );
214
+ for (const idNode of identifiers) {
215
+ if (isExported(idNode.text)) {
216
+ const metadata = this.analyzeMetadata(node, code);
217
+ exports.push({
218
+ name: idNode.text,
219
+ type: "variable",
220
+ loc: {
221
+ start: {
222
+ line: idNode.startPosition.row + 1,
223
+ column: idNode.startPosition.column
224
+ },
225
+ end: {
226
+ line: idNode.endPosition.row + 1,
227
+ column: idNode.endPosition.column
228
+ }
229
+ },
230
+ visibility: "public",
231
+ ...metadata
232
+ });
233
+ }
234
+ }
235
+ }
236
+ for (let i = 0; i < node.childCount; i++) {
237
+ const child = node.child(i);
238
+ if (child) traverse(child);
239
+ }
240
+ };
241
+ traverse(rootNode);
242
+ return exports;
243
+ }
244
+ extractParameters(node) {
245
+ return extractParameterNames(node);
246
+ }
247
+ getNamingConventions() {
248
+ return {
249
+ variablePattern: /^[a-zA-Z][a-zA-Z0-9]*$/,
250
+ functionPattern: /^[a-zA-Z][a-zA-Z0-9]*$/,
251
+ classPattern: /^[a-zA-Z][a-zA-Z0-9]*$/,
252
+ constantPattern: /^[a-zA-Z_][a-zA-Z0-9_]*$/
253
+ };
254
+ }
255
+ canHandle(filePath) {
256
+ return filePath.toLowerCase().endsWith(".go");
257
+ }
258
+ };
259
+
260
+ export {
261
+ GoParser
262
+ };