Skip to content

Commit 9824423

Browse files
author
DavidQ
committed
Clean up inspector utils after shared extraction
1 parent 0bc7bca commit 9824423

7 files changed

Lines changed: 18 additions & 11 deletions

File tree

docs/dev/CODEX_COMMANDS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MODEL: GPT-5.4-codex
22
REASONING: high
33
COMMAND:
4-
Execute docs/pr/BUILD_PR_REPO_STRUCTURE_69_MOVE_MAP_NUMERIC_EDGE_HELPERS_TO_SHARED_MATH.md exactly.
5-
Package to <project folder>/tmp/BUILD_PR_REPO_STRUCTURE_69_MOVE_MAP_NUMERIC_EDGE_HELPERS_TO_SHARED_MATH_delta.zip
4+
Execute docs/pr/BUILD_PR_REPO_STRUCTURE_70_INSPECTOR_UTILS_CLEANUP.md exactly.
5+
Package to <project folder>/tmp/BUILD_PR_REPO_STRUCTURE_70_INSPECTOR_UTILS_CLEANUP_delta.zip

docs/dev/COMMIT_COMMENT.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Move numeric edge helpers to shared math
1+
Clean up inspector utils after shared extraction

docs/dev/NEXT_COMMAND.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Next: final inspector cleanup
1+
Next: boundary validation
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
numeric helpers consolidation
1+
cleanup after moves

docs/dev/reports/file_tree.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
src/engine/debug/inspectors/shared/inspectorUtils.js
2-
src/shared/math/numberNormalization.js
1+
src/engine/debug/inspectors/shared/inspectorUtils.js
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# BUILD PR — Inspector Utils Cleanup
2+
3+
## Files
4+
- src/engine/debug/inspectors/shared/inspectorUtils.js
5+
6+
## Actions
7+
- remove now-dead helper code after previous extractions
8+
- ensure only inspector-specific logic remains
9+
10+
## Constraints
11+
- exact file only
12+
- no behavior change

src/engine/debug/inspectors/shared/inspectorUtils.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@ inspectorUtils.js
77

88
import { asPositiveInteger } from "../../../../shared/utils/numberUtils.js";
99
import { sanitizeText } from "../../../../shared/utils/stringUtils.js";
10-
import { createId, isValidId } from "../../../../shared/utils/idUtils.js";
11-
import { asFinite, asNonNegativeInteger } from "../../../../shared/math/numberNormalization.js";
1210

1311
export { sanitizeText };
14-
export { createId, isValidId };
15-
export { asFinite, asNonNegativeInteger };
1612

1713
export function asObject(value) {
1814
return value !== null && typeof value === "object" && !Array.isArray(value)

0 commit comments

Comments
 (0)