| 2629 | } |
| 2630 | |
| 2631 | void BeModule::PrintValue(BeValue* val) |
| 2632 | { |
| 2633 | BeDumpContext dumpCtx; |
| 2634 | String str; |
| 2635 | dumpCtx.ToString(str, val); |
| 2636 | str += "\n"; |
| 2637 | OutputDebugStr(str); |
| 2638 | |
| 2639 | auto type = val->GetType(); |
| 2640 | if (type != NULL) |
| 2641 | bpt(type); |
| 2642 | } |
| 2643 | |
| 2644 | void BeModule::DoInlining(BeFunction* func) |
| 2645 | { |