Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
import { COLUMN, SOURCES_INDEX, SOURCE_LINE, SOURCE_COLUMN } from './sourcemap-segment';
|
|
import { sortComparator } from './sort';
|
|
|
|
import type { ReverseSegment, SourceMapSegment } from './sourcemap-segment';
|
|
|
|
export type Source = ReverseSegment[][];
|
|
|
|
// Rebuilds the original source files, with mappings that are ordered by source line/column instead
|
|
// of generated line/column.
|
|
export default function buildBySources(
|
|
decoded: readonly SourceMapSegment[][],
|
|
memos: unknown[],
|
|
): Source[] {
|
|
const sources: Source[] = memos.map(() => []);
|
|
|
|
for (let i = 0; i < decoded.length; i++) {
|
|
const line = decoded[i];
|
|
for (let j = 0; j < line.length; j++) {
|
|
const seg = line[j];
|
|
if (seg.length === 1) continue;
|
|
|
|
const sourceIndex = seg[SOURCES_INDEX];
|
|
const sourceLine = seg[SOURCE_LINE];
|
|
const sourceColumn = seg[SOURCE_COLUMN];
|
|
|
|
const source = sources[sourceIndex];
|
|
const segs = (source[sourceLine] ||= []);
|
|
segs.push([sourceColumn, i, seg[COLUMN]]);
|
|
}
|
|
}
|
|
|
|
for (let i = 0; i < sources.length; i++) {
|
|
const source = sources[i];
|
|
for (let j = 0; j < source.length; j++) {
|
|
const line = source[j];
|
|
if (line) line.sort(sortComparator);
|
|
}
|
|
}
|
|
|
|
return sources;
|
|
}
|