Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 11 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ ModelSDKGo/
│ ├── pages.go # PageBuilder, widget builders
│ └── modules.go # ModulesAPI
├── sdk/ # SDK implementation packages
├── sdk/ # SDK implementation packages (hand-written, ~480 types, 5-10 domains)
│ ├── domainmodel/ # entity, attribute, association, DomainModel
│ ├── microflows/ # microflow, nanoflow, activities (60+ types)
│ ├── pages/ # page, layout, widget types (50+ widgets)
Expand All @@ -94,6 +94,16 @@ ModelSDKGo/
│ ├── parser.go # BSON parsing and deserialization
│ └── utils.go # UUID generation utilities
├── modelsdk/ # Next-gen SDK: auto-generated types with dirty tracking + BSON roundtrip
│ ├── codec/ # BSON encoder/decoder with type registry
│ ├── element/ # Element interface with dirty bitmap
│ ├── property/ # Generic property types (Primitive, Part, PartList, Enum, ByNameRef)
│ ├── gen/ # Auto-generated domain types (53 domains, 1500+ types)
│ ├── mpr/ # MPR v1/v2 reader/writer
│ ├── widgets/ # Widget template handling (fork of sdk/widgets/)
│ ├── meta/ # System module metadata
│ └── version/ # Version compatibility info
├── mdl/ # MDL (Mendix Definition Language) parser & CLI
│ ├── grammar/ # ANTLR4 grammar definition
│ │ ├── MDLLexer.g4 # ANTLR4 lexer grammar (tokens)
Expand Down
Loading
Loading