(tk: &mut Tokenizer, ctx: &LoadCtx)
| 25 | } |
| 26 | |
| 27 | fn parse_value(tk: &mut Tokenizer, ctx: &LoadCtx) -> Result<Handle> { |
| 28 | let t = tk.next_token().map_err(to_pdk_err)?; |
| 29 | parse_value_with(tk, t, ctx) |
| 30 | } |
| 31 | |
| 32 | fn parse_value_with(tk: &mut Tokenizer, t: Token, ctx: &LoadCtx) -> Result<Handle> { |
| 33 | match t { |
no test coverage detected