vm(hako): add v1 reader/dispatcher (flagged), commonize mir_call handler, share block scan; smokes: add v1 hakovm canary; docs: 20.37/20.38 plans, OOB policy; runner: v1 hakovm toggle; include SKIP summary
This commit is contained in:
@ -92,8 +92,9 @@ static box JsonFragBox {
|
||||
local pat1 = "\"" + key + "\":"
|
||||
local p = me.index_of_from(seg, pat1, 0)
|
||||
if p >= 0 {
|
||||
local v = me.read_digits(seg, p + pat1.length())
|
||||
if v != "" { return me._str_to_int(v) }
|
||||
// tolerant: skip whitespace and optional sign
|
||||
local v = me.read_int_after(seg, p + pat1.length())
|
||||
if v != null { return me._str_to_int(v) }
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user