エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GitHub - indutny/llparse: Generating parsers in LLVM IR
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHub - indutny/llparse: Generating parsers in LLVM IR
import { LLParse } from 'llparse'; const p = new LLParse('http_parser'); const method = p.node('m... import { LLParse } from 'llparse'; const p = new LLParse('http_parser'); const method = p.node('method'); const beforeUrl = p.node('before_url'); const urlSpan = p.span(p.code.span('on_url')); const url = p.node('url'); const http = p.node('http'); // Add custom uint8_t property to the state p.property('i8', 'method'); // Store method inside a custom property const onMethod = p.invoke(p.code.store

