Extract Type from DynamicType
(&mut self, dt: DynamicType, ctx: &mut Context)
| 604 | |
| 605 | // Extract Type from DynamicType |
| 606 | fn concrete_from_dt(&mut self, dt: DynamicType, ctx: &mut Context) -> Option<Type> { |
| 607 | ctx.function.get_concrete_dynamic_ty(dt) |
| 608 | } |
| 609 | |
| 610 | // Match and consume a global value reference. |
| 611 | fn match_gv(&mut self, err_msg: &str) -> ParseResult<GlobalValue> { |
no test coverage detected