Method
invoke
(Object reader, Object semicolon, Object opts, Object pendingForms)
Source from the content-addressed store, hash-verified
| 624 | |
| 625 | public static class CommentReader extends AFn{ |
| 626 | public Object invoke(Object reader, Object semicolon, Object opts, Object pendingForms) { |
| 627 | Reader r = (Reader) reader; |
| 628 | int ch; |
| 629 | do |
| 630 | { |
| 631 | ch = read1(r); |
| 632 | } while(ch != -1 && ch != '\n' && ch != '\r'); |
| 633 | return r; |
| 634 | } |
| 635 | |
| 636 | } |
| 637 | |
Callers
nothing calls this directly
Tested by
no test coverage detected