Sprint 2 Step 7: Schema validation

This commit is contained in:
Bill
2026-02-06 19:31:38 -07:00
parent 665c96b648
commit 8ca6eccd56
24 changed files with 1932 additions and 48 deletions

View File

@@ -0,0 +1,14 @@
# Processing a List of Records - Whetstone AST (Canonical Form)
```
Function: processRecords
@deref(???) // Strategy applied here
Parameter: records -> List<Record>
Body:
ForLoop:
iterator: record in records
body:
Call: record.validate()
Call: record.transform()
Return: records
```