Files
hakorune/lang/src/compiler/pipeline_v2/method_extract_box.hako

13 lines
526 B
Plaintext
Raw Normal View History

// MethodExtractBox — Stage1 JSON から Return(Method recv, method, args) を抽出(整数引数のみ; recvは無視
// Delegation to Stage1IntArgsExtractBox (unified implementation)
using "lang/src/compiler/pipeline_v2/stage1_int_args_extract_box.hako" as Unified
static box MethodExtractBox {
// Returns { method: String, args: [Int,...] } or null
extract_return_method_ints(ast_json) {
return Unified.extract_return_method_ints(ast_json)
}
}
static box MethodExtractStub { main(args) { return 0 } }