| 693 | } |
| 694 | |
| 695 | Dictionary::Ptr ConfigObject::GetSourceLocation() const |
| 696 | { |
| 697 | DebugInfo di = GetDebugInfo(); |
| 698 | |
| 699 | return new Dictionary({ |
| 700 | { "path", di.Path }, |
| 701 | { "first_line", di.FirstLine }, |
| 702 | { "first_column", di.FirstColumn }, |
| 703 | { "last_line", di.LastLine }, |
| 704 | { "last_column", di.LastColumn } |
| 705 | }); |
| 706 | } |
| 707 | |
| 708 | NameComposer::~NameComposer() |
| 709 | { } |