feat(impact): cross-language blast-radius coverage (22 languages + 14 frameworks) (#708)

Completes the cross-file dependency graph behind impact / affected / explore across all 22 supported languages and 14 web frameworks, validated on real-world repos (measured fair-coverage table added to the README). Per-language resolution + framework resolvers/synthesizers (Lua/Luau require, Shopify OS 2.0 Liquid sections, Delphi forms, Rust cross-module + Rocket macros, Swift Fluent, SvelteKit/Nuxt loader/component conventions, RN/Expo bridges). 0 cross-family false edges, full suite green (1187 passed). See #708.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Colby Mchenry
2026-06-06 11:02:59 -04:00
committed by GitHub
co-authored by Claude Opus 4.8
parent bfa84d32b8
commit 07af3db6c7
43 changed files with 5344 additions and 716 deletions
+34
View File
@@ -123,4 +123,38 @@ export function onMessage(listener: (m: any) => void) {
expect(edge.target_name).toBe('onMessage');
expect(['function', 'method']).toContain(edge.target_kind);
});
it('synthesizes an edge from a Java sendEvent(ctx, "X", body) wrapper to a JS handler', async () => {
fs.writeFileSync(path.join(dir, 'package.json'), '{"dependencies":{"react-native":"^0.74.0"}}');
// The literal event name lives in the WRAPPER CALL, not in `.emit` (whose
// first arg is the `eventName` VARIABLE) — the common react-native-device-info
// shape that RN_JVM_EMIT_RE alone misses.
fs.writeFileSync(path.join(dir, 'BatteryModule.java'),
'public class BatteryModule extends ReactContextBaseJavaModule {\n' +
' @Override public String getName() { return "BatteryModule"; }\n' +
' public void onBatteryChanged() {\n' +
' sendEvent(getReactApplicationContext(),\n' +
' "myWrapperBatteryEvent", null);\n' +
' }\n' +
' private void sendEvent(ReactContext ctx, String eventName, Object data) {\n' +
' ctx.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class).emit(eventName, data);\n' +
' }\n' +
'}\n');
fs.writeFileSync(path.join(dir, 'index.ts'),
"function onBattery() {}\n" +
"emitter.addListener('myWrapperBatteryEvent', onBattery);\n");
const cg = await CodeGraph.init(dir, { silent: true });
await cg.indexAll();
const db = (cg as any).db.db;
const rows = db.prepare(
"SELECT s.name source_name, s.language sl, t.name target_name FROM edges e " +
"JOIN nodes s ON s.id=e.source JOIN nodes t ON t.id=e.target " +
"WHERE json_extract(e.metadata,'$.synthesizedBy')='rn-event-channel' AND json_extract(e.metadata,'$.event')='myWrapperBatteryEvent'"
).all();
cg.close?.();
expect(rows.length).toBeGreaterThanOrEqual(1);
expect(rows[0].sl).toBe('java');
expect(rows[0].source_name).toBe('onBatteryChanged');
expect(rows[0].target_name).toBe('onBattery');
});
});