13 lines
649 B
Go
13 lines
649 B
Go
package lang
|
|
|
|
// Parser tests have been organized into specialized files:
|
|
// - parser_server_test.go - Server definition parsing tests
|
|
// - parser_entity_test.go - Entity definition parsing tests
|
|
// - parser_page_test.go - Page definition parsing tests
|
|
// - parser_component_test.go - Component and field parsing tests
|
|
// - parser_advanced_test.go - Advanced features (conditionals, tabs, modals, master-detail)
|
|
// - parser_test_helpers.go - Shared helper functions and comparison utilities
|
|
//
|
|
// This organization allows for easier maintenance and addition of new test categories
|
|
// for future language interpretation features.
|