| 462 | class SourceInfo |
| 463 | { |
| 464 | struct SourceLine |
| 465 | { |
| 466 | SourceLine(){} |
| 467 | SourceLine(unsigned int position, const char *pos) |
| 468 | { |
| 469 | byteCodePos = position; |
| 470 | sourcePos = pos; |
| 471 | } |
| 472 | |
| 473 | unsigned int byteCodePos; // ������� � ��������, � ������� ��������� ������ |
| 474 | const char *sourcePos; |
| 475 | }; |
| 476 | public: |
| 477 | SourceInfo() |
| 478 | { |