@mrclrchtr/supi-code-intelligence 1.3.1 → 1.4.0
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/README.md +70 -32
- package/node_modules/@mrclrchtr/supi-core/README.md +52 -41
- package/node_modules/@mrclrchtr/supi-core/package.json +1 -1
- package/node_modules/@mrclrchtr/supi-core/src/api.ts +13 -13
- package/node_modules/@mrclrchtr/supi-core/src/{config-settings.ts → config/config-settings.ts} +2 -2
- package/node_modules/@mrclrchtr/{supi-lsp/node_modules/@mrclrchtr/supi-core/src → supi-core/src/context}/context-provider-registry.ts +1 -1
- package/node_modules/@mrclrchtr/supi-core/src/extension.ts +1 -1
- package/node_modules/@mrclrchtr/supi-core/src/index.ts +13 -13
- package/node_modules/@mrclrchtr/{supi-lsp/node_modules/@mrclrchtr/supi-core/src → supi-core/src/settings}/settings-registry.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/README.md +58 -39
- package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/README.md +52 -41
- package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/package.json +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/api.ts +13 -13
- package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/{config-settings.ts → config/config-settings.ts} +2 -2
- package/node_modules/@mrclrchtr/{supi-core/src → supi-lsp/node_modules/@mrclrchtr/supi-core/src/context}/context-provider-registry.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/extension.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/index.ts +13 -13
- package/node_modules/@mrclrchtr/{supi-core/src → supi-lsp/node_modules/@mrclrchtr/supi-core/src/settings}/settings-registry.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/package.json +3 -2
- package/node_modules/@mrclrchtr/supi-lsp/src/api.ts +16 -3
- package/node_modules/@mrclrchtr/supi-lsp/src/client/client-refresh.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/client/client.ts +27 -3
- package/node_modules/@mrclrchtr/supi-lsp/src/client/transport.ts +61 -5
- package/node_modules/@mrclrchtr/supi-lsp/src/config/tsconfig-scope.ts +244 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/{types.ts → config/types.ts} +4 -2
- package/node_modules/@mrclrchtr/supi-lsp/src/coordinates.ts +11 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/diagnostic-augmentation.ts +5 -5
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/diagnostic-context.ts +115 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/diagnostic-display.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/diagnostic-summary.ts +3 -2
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/diagnostics.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/stale-diagnostics.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/diagnostics/suppression-diagnostics.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/{workspace-sentinels.ts → diagnostics/workspace-sentinels.ts} +2 -2
- package/node_modules/@mrclrchtr/supi-lsp/src/format.ts +2 -23
- package/node_modules/@mrclrchtr/supi-lsp/src/index.ts +18 -5
- package/node_modules/@mrclrchtr/supi-lsp/src/lsp.ts +72 -120
- package/node_modules/@mrclrchtr/supi-lsp/src/manager/manager-diagnostics.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/manager/manager-helpers.ts +4 -2
- package/node_modules/@mrclrchtr/supi-lsp/src/manager/manager-project-info.ts +10 -7
- package/node_modules/@mrclrchtr/supi-lsp/src/manager/manager-workspace-recovery.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/manager/manager-workspace-symbol.ts +158 -6
- package/node_modules/@mrclrchtr/supi-lsp/src/manager/manager.ts +202 -43
- package/node_modules/@mrclrchtr/supi-lsp/src/{lsp-state.ts → session/lsp-state.ts} +22 -11
- package/node_modules/@mrclrchtr/supi-lsp/src/{scanner.ts → session/scanner.ts} +3 -3
- package/node_modules/@mrclrchtr/supi-lsp/src/{service-registry.ts → session/service-registry.ts} +104 -12
- package/node_modules/@mrclrchtr/supi-lsp/src/{settings-registration.ts → session/settings-registration.ts} +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/session/tree-persist.ts +75 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/summary.ts +1 -1
- package/node_modules/@mrclrchtr/supi-lsp/src/tool/guidance.ts +138 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/tool/names.ts +19 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/{overrides.ts → tool/overrides.ts} +55 -24
- package/node_modules/@mrclrchtr/supi-lsp/src/tool/register-tools.ts +224 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/tool/service-actions.ts +258 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/{ui.ts → ui/ui.ts} +4 -4
- package/node_modules/@mrclrchtr/supi-lsp/src/utils.ts +11 -0
- package/node_modules/@mrclrchtr/supi-tree-sitter/README.md +46 -39
- package/node_modules/@mrclrchtr/supi-tree-sitter/package.json +1 -1
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/api.ts +1 -1
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/index.ts +1 -1
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{runtime.ts → session/runtime.ts} +3 -3
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{session.ts → session/session.ts} +4 -4
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{callees.ts → tool/callees.ts} +3 -3
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{exports.ts → tool/exports.ts} +4 -4
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{formatting.ts → tool/formatting.ts} +1 -1
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/tool/guidance.ts +22 -0
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{imports.ts → tool/imports.ts} +4 -4
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{node-at.ts → tool/node-at.ts} +3 -3
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/{outline.ts → tool/outline.ts} +3 -3
- package/node_modules/@mrclrchtr/supi-tree-sitter/src/tree-sitter.ts +6 -29
- package/package.json +4 -4
- package/src/actions/affected-action.ts +4 -4
- package/src/actions/brief-action.ts +12 -13
- package/src/actions/callees-action.ts +14 -10
- package/src/actions/callers-action.ts +4 -4
- package/src/actions/implementations-action.ts +4 -4
- package/src/code-intelligence.ts +1 -1
- package/src/pattern-structured.ts +20 -22
- package/src/providers/semantic-provider.ts +34 -0
- package/src/providers/structural-provider.ts +14 -0
- package/src/target-resolution.ts +26 -35
- package/src/tool/guidance.ts +21 -0
- package/node_modules/@mrclrchtr/supi-lsp/src/guidance.ts +0 -163
- package/node_modules/@mrclrchtr/supi-lsp/src/search-fallback.ts +0 -98
- package/node_modules/@mrclrchtr/supi-lsp/src/tool-actions.ts +0 -430
- package/node_modules/@mrclrchtr/supi-lsp/src/tree-persist.ts +0 -48
- package/node_modules/@mrclrchtr/supi-lsp/src/tsconfig-scope.ts +0 -156
- package/src/guidance.ts +0 -42
- /package/node_modules/@mrclrchtr/supi-core/src/{config.ts → config/config.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-core/src/{context-messages.ts → context/context-messages.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-core/src/{context-tag.ts → context/context-tag.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-core/src/{settings-command.ts → settings/settings-command.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-core/src/{settings-ui.ts → settings/settings-ui.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/{config.ts → config/config.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/{context-messages.ts → context/context-messages.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/{context-tag.ts → context/context-tag.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/{settings-command.ts → settings/settings-command.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/node_modules/@mrclrchtr/supi-core/src/{settings-ui.ts → settings/settings-ui.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/src/{capabilities.ts → config/capabilities.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/src/{config.ts → config/config.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/src/{defaults.json → config/defaults.json} +0 -0
- /package/node_modules/@mrclrchtr/supi-lsp/src/{renderer.ts → ui/renderer.ts} +0 -0
- /package/node_modules/@mrclrchtr/supi-tree-sitter/src/{structure.ts → tool/structure.ts} +0 -0
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
// tsconfig-aware file scope detection.
|
|
2
|
-
//
|
|
3
|
-
// Determines whether a file is within the compilation scope of its nearest
|
|
4
|
-
// tsconfig.json by checking `include` and `exclude` patterns. Used by the
|
|
5
|
-
// diagnostic filter to suppress LSP errors on files that TypeScript itself
|
|
6
|
-
// would not type-check.
|
|
7
|
-
|
|
8
|
-
import * as fs from "node:fs";
|
|
9
|
-
import * as path from "node:path";
|
|
10
|
-
|
|
11
|
-
interface TsconfigInfo {
|
|
12
|
-
dir: string;
|
|
13
|
-
include: string[] | undefined;
|
|
14
|
-
exclude: string[] | undefined;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
const cache = new Map<string, TsconfigInfo | null>();
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Check whether a file is excluded by its nearest tsconfig.json.
|
|
21
|
-
*
|
|
22
|
-
* @param filePath - Project-relative file path (e.g., "packages/foo/__tests__/x.test.ts")
|
|
23
|
-
* @param cwd - Absolute project root directory
|
|
24
|
-
* @returns `true` if the file is excluded from compilation scope
|
|
25
|
-
*/
|
|
26
|
-
export function isFileExcludedByTsconfig(filePath: string, cwd: string): boolean {
|
|
27
|
-
const absolutePath = path.resolve(cwd, filePath);
|
|
28
|
-
const tsconfig = findNearestTsconfig(path.dirname(absolutePath), cwd);
|
|
29
|
-
if (!tsconfig) return false;
|
|
30
|
-
|
|
31
|
-
const relativeToTsconfig = path.relative(tsconfig.dir, absolutePath).replaceAll("\\", "/");
|
|
32
|
-
|
|
33
|
-
// Check exclude patterns first
|
|
34
|
-
if (tsconfig.exclude) {
|
|
35
|
-
for (const pattern of tsconfig.exclude) {
|
|
36
|
-
if (matchesPattern(relativeToTsconfig, pattern)) return true;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// If include is specified, the file must match at least one pattern
|
|
41
|
-
if (tsconfig.include) {
|
|
42
|
-
let included = false;
|
|
43
|
-
for (const pattern of tsconfig.include) {
|
|
44
|
-
if (matchesPattern(relativeToTsconfig, pattern)) {
|
|
45
|
-
included = true;
|
|
46
|
-
break;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
if (!included) return true;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
return false;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* Find the nearest tsconfig.json walking upward from `startDir`,
|
|
57
|
-
* stopping at `rootDir`.
|
|
58
|
-
*/
|
|
59
|
-
function findNearestTsconfig(startDir: string, rootDir: string): TsconfigInfo | null {
|
|
60
|
-
let dir = startDir;
|
|
61
|
-
while (true) {
|
|
62
|
-
const cached = cache.get(dir);
|
|
63
|
-
if (cached !== undefined) return cached;
|
|
64
|
-
|
|
65
|
-
const tsconfigPath = path.join(dir, "tsconfig.json");
|
|
66
|
-
if (fs.existsSync(tsconfigPath)) {
|
|
67
|
-
const info = parseTsconfig(dir, tsconfigPath);
|
|
68
|
-
cache.set(dir, info);
|
|
69
|
-
return info;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
if (path.relative(rootDir, dir).startsWith("..") || dir === rootDir) {
|
|
73
|
-
// Don't look above the project root
|
|
74
|
-
return null;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
const parent = path.dirname(dir);
|
|
78
|
-
if (parent === dir) {
|
|
79
|
-
return null;
|
|
80
|
-
}
|
|
81
|
-
dir = parent;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
function parseTsconfig(dir: string, tsconfigPath: string): TsconfigInfo | null {
|
|
86
|
-
try {
|
|
87
|
-
const raw = fs.readFileSync(tsconfigPath, "utf-8");
|
|
88
|
-
// Strip comments without touching content inside double-quoted strings.
|
|
89
|
-
const cleaned = raw
|
|
90
|
-
.replace(/("(?:\\.|[^"\\])*")|\/\/.*$/gm, "$1")
|
|
91
|
-
.replace(/("(?:\\.|[^"\\])*")|\/[\s\S]*?\*\//g, "$1");
|
|
92
|
-
const json = JSON.parse(cleaned);
|
|
93
|
-
return {
|
|
94
|
-
dir,
|
|
95
|
-
include: json.include as string[] | undefined,
|
|
96
|
-
exclude: json.exclude as string[] | undefined,
|
|
97
|
-
};
|
|
98
|
-
} catch {
|
|
99
|
-
return null;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Lightweight pattern matching for tsconfig include/exclude patterns.
|
|
105
|
-
* Handles directory names, extensions, recursive globs, and literal paths.
|
|
106
|
-
*/
|
|
107
|
-
function matchesPattern(filePath: string, pattern: string): boolean {
|
|
108
|
-
const normalizedPattern = pattern.replaceAll("\\", "/");
|
|
109
|
-
|
|
110
|
-
// Directory-prefixed recursive glob: prefix/**/*.ext
|
|
111
|
-
if (normalizedPattern.includes("/**/")) {
|
|
112
|
-
const idx = normalizedPattern.indexOf("/**/");
|
|
113
|
-
const prefix = normalizedPattern.slice(0, idx);
|
|
114
|
-
const suffix = normalizedPattern.slice(idx + 4);
|
|
115
|
-
return (
|
|
116
|
-
filePath.startsWith(`${prefix}/`) && matchesPattern(filePath.slice(prefix.length + 1), suffix)
|
|
117
|
-
);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
// Recursive glob: **/*.ext
|
|
121
|
-
if (normalizedPattern.startsWith("**/")) {
|
|
122
|
-
const suffix = normalizedPattern.slice(3); // e.g., "*.ts"
|
|
123
|
-
return matchesPattern(filePath, suffix) || filePath.includes(`/${suffix}`);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// Directory match: pattern has no glob chars and no "."
|
|
127
|
-
// e.g., "node_modules" or "__tests__"
|
|
128
|
-
if (!normalizedPattern.includes("*") && !normalizedPattern.includes(".")) {
|
|
129
|
-
return (
|
|
130
|
-
filePath === normalizedPattern ||
|
|
131
|
-
filePath.startsWith(`${normalizedPattern}/`) ||
|
|
132
|
-
filePath.includes(`/${normalizedPattern}/`)
|
|
133
|
-
);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// Simple glob: *.ext — match basename
|
|
137
|
-
if (normalizedPattern.startsWith("*.")) {
|
|
138
|
-
const ext = normalizedPattern.slice(1); // e.g., ".ts"
|
|
139
|
-
return filePath.endsWith(ext) && !filePath.includes("/", filePath.length - ext.length - 1);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
// Literal path
|
|
143
|
-
if (!normalizedPattern.includes("*")) {
|
|
144
|
-
return filePath === normalizedPattern || filePath.startsWith(`${normalizedPattern}/`);
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
// Fallback: path contains the pattern segment
|
|
148
|
-
return filePath.includes(`/${normalizedPattern}`) || filePath === normalizedPattern;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
/**
|
|
152
|
-
* Clear the tsconfig cache. Useful for testing or after filesystem changes.
|
|
153
|
-
*/
|
|
154
|
-
export function clearTsconfigCache(): void {
|
|
155
|
-
cache.clear();
|
|
156
|
-
}
|
package/src/guidance.ts
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
// Prompt guidance and tool description for the code_intel tool.
|
|
2
|
-
|
|
3
|
-
export const toolDescription = `Code intelligence tool — architecture briefs, semantic relationships, impact analysis, structured text search, and project indexing.
|
|
4
|
-
|
|
5
|
-
Actions:
|
|
6
|
-
- brief: Architecture overview or focused brief for a project, package, directory, file, or anchored symbol
|
|
7
|
-
- callers: Find call sites for a symbol, or analyze a file-level export surface when only \`file\` is provided
|
|
8
|
-
- callees: Best-effort outgoing calls from a symbol (structural tree-sitter analysis across supported grammars)
|
|
9
|
-
- implementations: Find concrete implementations of an interface or abstract type
|
|
10
|
-
- affected: Blast-radius analysis for a symbol or exported file surface — direct references, downstream dependents, risk level, likely tests
|
|
11
|
-
- pattern: Bounded text search with grouped matches, context lines, structured \`kind\` filters (\`definition\` | \`export\` | \`import\`), partial-result warnings on oversized structured scans, and regex opt-in via \`regex: true\`
|
|
12
|
-
- index: Factual project map — file counts by language, top-level directory tree, landmark config files
|
|
13
|
-
|
|
14
|
-
Coordinates are 1-based (line, character) with UTF-16 character columns, matching lsp and tree_sitter conventions.
|
|
15
|
-
Relative paths resolve from the session working directory. A leading @ on path/file is stripped automatically.
|
|
16
|
-
|
|
17
|
-
Examples:
|
|
18
|
-
{ "action": "brief" }
|
|
19
|
-
{ "action": "brief", "path": "packages/supi-lsp/" }
|
|
20
|
-
{ "action": "brief", "file": "packages/supi-lsp/lsp.ts", "line": 42, "character": 7 }
|
|
21
|
-
{ "action": "callers", "file": "packages/supi-core/index.ts" }
|
|
22
|
-
{ "action": "callers", "symbol": "registerSettings", "path": "packages/supi-core/" }
|
|
23
|
-
{ "action": "callees", "file": "src/handler.ts", "line": 88, "character": 12 }
|
|
24
|
-
{ "action": "implementations", "symbol": "SessionLspService", "path": "packages/" }
|
|
25
|
-
{ "action": "affected", "file": "packages/supi-core/index.ts" }
|
|
26
|
-
{ "action": "pattern", "pattern": "registerSettings", "path": "packages/", "maxResults": 10 }
|
|
27
|
-
{ "action": "pattern", "pattern": "register(Settings|Config)", "path": "packages/", "regex": true, "maxResults": 10 }
|
|
28
|
-
{ "action": "pattern", "pattern": "payment", "kind": "definition", "path": "src/" }`;
|
|
29
|
-
|
|
30
|
-
export const promptSnippet =
|
|
31
|
-
"Use the code_intel tool for architecture orientation, semantic relationships, impact analysis, and structured search before broad file reads.";
|
|
32
|
-
|
|
33
|
-
export const promptGuidelines = [
|
|
34
|
-
"Use `code_intel brief` before editing an unfamiliar package, directory, or file to get architecture context and reduce blind reads.",
|
|
35
|
-
"Use `code_intel affected` before changing exported APIs, shared helpers, config surfaces, or cross-package contracts to check blast radius and risk; file-only requests now expand across exported targets when possible.",
|
|
36
|
-
"Use `code_intel callers` before modifying a function to verify all call sites; use `callees` and `implementations` for dependency and interface analysis, and use file-only `callers` when you need the export surface of a module.",
|
|
37
|
-
'Use `code_intel pattern` for bounded, scope-aware text search when the question is textual rather than semantic; it treats patterns as literal strings by default, supports `regex: true`, supports `kind: "definition" | "export" | "import"` for structured searches, and may return a partial-result warning when a structured scan is too broad.',
|
|
38
|
-
"Use `code_intel brief` and `code_intel affected` priority signals to notice diagnostics, low coverage, or unused-code hints before editing risky files.",
|
|
39
|
-
"Use `code_intel index` for a factual project map (file counts, directory structure, landmark files) when you need to orient yourself in a new codebase.",
|
|
40
|
-
"After `code_intel` narrows the target, use raw `lsp` and `tree_sitter` tools for precise drill-down on exact symbols, types, or AST nodes.",
|
|
41
|
-
"Do not prefer `code_intel` over direct file reads or lower-level tools for trivial, already-localized edits or exact symbol/AST drill-down tasks.",
|
|
42
|
-
];
|
|
File without changes
|
/package/node_modules/@mrclrchtr/supi-core/src/{context-messages.ts → context/context-messages.ts}
RENAMED
|
File without changes
|
|
File without changes
|
/package/node_modules/@mrclrchtr/supi-core/src/{settings-command.ts → settings/settings-command.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|