| 555 | } |
| 556 | |
| 557 | bool gsoner::skip_space_comment(void) |
| 558 | { |
| 559 | bool result = false; |
| 560 | again: |
| 561 | if (skip_space ()) { |
| 562 | result = true; |
| 563 | } |
| 564 | |
| 565 | char ch = codes_[pos_]; |
| 566 | if(ch == '/') { |
| 567 | if (check_comment()) { |
| 568 | result = true; |
| 569 | goto again; |
| 570 | } else { |
| 571 | throw syntax_error(); |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | return result; |
| 576 | } |
| 577 | |
| 578 | bool gsoner::check_include(void) |
| 579 | { |
nothing calls this directly
no test coverage detected