awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • webmozarts/assertAvatar de webmozarts

    webmozarts/assert

    7,648Ver en 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
    Ver en GitHub↗7,648
  • chai2010/go-ast-bookAvatar de chai2010

    chai2010/go-ast-book

    5,510Ver en GitHub↗

    go-ast-book es una colección de recursos técnicos y educativos centrados en el análisis de árboles de sintaxis abstracta (AST), desarrollo de compiladores y verificación estática de código. Proporciona guías y manuales para analizar, recorrer y examinar código fuente en Go con el fin de extraer su significado semántico. El proyecto sirve como referencia para construir frontends de compiladores, cubriendo la traducción de código de alto nivel a representaciones intermedias y formas de asignación estática única (SSA). También proporciona instrucciones para utilizar estas técnicas en el desarrollo de herramientas de lenguaje y análisis estático de código. Los recursos cubren una amplia gama de capacidades de análisis estático, incluyendo tokenización léxica, análisis estructural de expresiones y declaraciones, y seguimiento de coordenadas para archivos fuente. También detalla procesos de análisis semántico como la resolución de identificadores, verificación de corrección de tipos y análisis de flujo de control para concurrencia y ejecución diferida.

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

    Go
    Ver en GitHub↗5,510
  • tc39/proposal-type-annotationsAvatar de tc39

    tc39/proposal-type-annotations

    4,386Ver en 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
    Ver en GitHub↗4,386
  1. Home
  2. Programming Languages & Runtimes
  3. Type Conversion and Casting
  4. Static Type Assertions

Explorar subetiquetas

  • 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.