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

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

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

3 مستودعات

Awesome GitHub RepositoriesStatic Type Assertions

Markers used to hint a specific type to static analyzers without performing actual runtime casting.

Distinct from Type Conversion and Casting: Distinct from runtime casting as it provides no operational bytecode for the cast

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Static Type Assertions. Refine with filters or upvote what's useful.

Awesome Static Type Assertions GitHub Repositories

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

    webmozarts/assert

    7,648عرض على GitHub↗

    This PHP assertion library is a runtime data validator used to verify method inputs and outputs. It provides a toolkit for validating data types, numeric ranges, and string patterns during program execution to prevent invalid states. The project serves as a static analysis helper by providing type hints and annotations that improve the accuracy of formal verification tools. It includes a collection validation utility for applying rules across arrays or iterable collections, and a filesystem validation tool to verify path existence and read or write permissions. The library covers a broad ran

    Provides type hints and assertions that assist static analysis tools in detecting type mismatches during development.

    PHP
    عرض على GitHub↗7,648
  • chai2010/go-ast-bookالصورة الرمزية لـ chai2010

    chai2010/go-ast-book

    5,510عرض على GitHub↗

    go-ast-book is a collection of educational and technical resources focused on abstract syntax tree analysis, compiler development, and static code verification. It provides guides and manuals for parsing, traversing, and analyzing Go source code to extract semantic meaning. The project serves as a reference for building compiler frontends, covering the translation of high-level code into intermediate representations and single static assignment forms. It also provides instructions for using these techniques to develop language tooling and perform static code analysis. The resources cover a b

    Locates type assertion expressions to determine how a program validates interface types at runtime.

    Go
    عرض على GitHub↗5,510
  • tc39/proposal-type-annotationsالصورة الرمزية لـ tc39

    tc39/proposal-type-annotations

    4,386عرض على GitHub↗

    This is an ECMAScript proposal that adds static type syntax to JavaScript, enabling type checking without a separate transpilation step. The proposal defines a standard for type annotations, interfaces, generics, and type imports and exports that are stripped during execution, allowing code to run natively in existing JavaScript engines while still being validated by external type checkers. The proposal introduces generic type parameters using angle-bracket syntax on functions, classes, and type declarations, which are removed at runtime. It also provides syntax for type annotations on variab

    Overrides inferred types using assertion syntax without any runtime effect.

    JavaScript
    عرض على GitHub↗4,386
  1. Home
  2. Programming Languages & Runtimes
  3. Type Conversion and Casting
  4. Static Type Assertions

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

  • Type Assertion IdentificationLocating and analyzing expressions that validate interface types at runtime. **Distinct from Static Type Assertions:** Distinct from Static Type Assertions as it identifies actual language constructs used for runtime validation rather than providing hints to a tool.