awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 مستودعات

Awesome GitHub RepositoriesType Representation Objects

Immutable value objects used to represent parsed type information for safe manipulation during analysis.

Distinguishing note: Candidates focus on language type systems or error objects, not the architectural pattern of using value objects to represent parsed types.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Type Representation Objects. Refine with filters or upvote what's useful.

Awesome Type Representation Objects GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • phpdocumentor/typeresolverالصورة الرمزية لـ phpDocumentor

    phpDocumentor/TypeResolver

    9,180عرض على GitHub↗

    TypeResolver is a PHP namespace resolver and type parser designed to convert partial class and element names into fully qualified names. It functions as a utility for static code analysis, transforming complex type expressions and primitives into structured value objects. The project implements PSR-5 standards to ensure consistent type referencing. It manages the resolution of structural elements by tracking current namespaces and alias contexts to expand partial identifiers into their full definitions. The tool covers the parsing of compound type strings and the management of PHP imports an

    Encapsulates parsed type information within immutable value objects to ensure type safety during resolution.

    PHPtyperesolver
    عرض على GitHub↗9,180
  • miloyip/json-tutorialالصورة الرمزية لـ miloyip

    miloyip/json-tutorial

    7,939عرض على GitHub↗

    This is an educational tutorial that walks through implementing a complete JSON library from scratch in C. The project covers the full data lifecycle of JSON, including parsing text into structured in-memory representations, validating input against the specification, serializing data back into standard JSON output, and providing structured access to elements within parsed arrays and objects. The implementation is built around a hand-written recursive descent parser that processes JSON text by matching grammar rules to build a structured data tree. Parsed values are stored in a tagged union r

    Stores parsed JSON data in a tagged union structure with type, number, string, array, and object fields.

    C
    عرض على GitHub↗7,939
  1. Home
  2. Software Engineering & Architecture
  3. Type Representation Objects

استكشف الوسوم الفرعية

  • Tagged Union Value RepresentationsStructured data types that store parsed values in a tagged union with explicit type, number, string, array, and object fields. **Distinct from Type Representation Objects:** Distinct from Type Representation Objects: specifically uses a tagged union pattern for JSON data, not general type representation.