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

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

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

2 مستودعات

Awesome GitHub RepositoriesRuntime-Specific Code Parsing

Transforming source code into abstract syntax trees using the exact language version of the executing interpreter.

Distinct from Abstract Syntax Tree Parsing: Distinct from Abstract Syntax Tree Parsing: focuses specifically on matching the executing runtime interpreter version during parsing.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Runtime-Specific Code Parsing. Refine with filters or upvote what's useful.

Awesome Runtime-Specific Code Parsing GitHub Repositories

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

    symfony/expression-language

    2,848عرض على GitHub↗

    The expression-language is a lightweight calculation component and parser tool that compiles and evaluates single-line string expressions against runtime variables. It functions as an expression engine that parses logical expressions into executable code or evaluates them directly against provided variables and functions to power dynamic rule evaluation and configuration. The engine features a complete architecture covering lexical tokenisation, intermediate code generation, and execution caching. It parses expression strings into hierarchical abstract syntax trees to enable programmatic insp

    Translates parsed syntax trees into optimised executable code structures to remove parsing overhead during repeated operations.

    PHPcomponentphpsymfony
    عرض على GitHub↗2,848
  • whitequark/parserالصورة الرمزية لـ whitequark

    whitequark/parser

    1,642عرض على GitHub↗

    Parser is a Ruby source code parser that converts raw source text into structured abstract syntax trees for static analysis and code manipulation. It features dynamic dispatch mechanisms that select specific grammar and tokeniser implementations at runtime, supporting both the executing interpreter version and explicitly targeted language specification versions. The library constructs abstract syntax tree nodes as frozen, immutable objects while tracking exact source file coordinates and character ranges for each node. Developers can supply custom builder objects to control how tree nodes ar

    Transforms source code into abstract syntax trees using the exact language version of the interpreter currently executing.

    Yacc
    عرض على GitHub↗1,642
  1. Home
  2. Software Engineering & Architecture
  3. Abstract Syntax Tree Parsing
  4. Runtime-Specific Code Parsing

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

  • Expression Code GeneratorsTranslates parsed syntax trees into optimized executable code structures to remove parsing overhead. **Distinct from Runtime-Specific Code Parsing:** Distinct from runtime-specific parsing: focuses specifically on intermediate code generation from expression syntax trees.