ParseNoLineComments is the same as Parse, but does not write line comments.
(w io.Writer, r io.Reader, filename, pkg string)
| 35 | |
| 36 | // ParseNoLineComments is the same as Parse, but does not write line comments. |
| 37 | func ParseNoLineComments(w io.Writer, r io.Reader, filename, pkg string) error { |
| 38 | return parse(w, r, filename, pkg, true) |
| 39 | } |
| 40 | |
| 41 | func parse(w io.Writer, r io.Reader, filename, pkg string, skipLineComments bool) error { |
| 42 | p := &parser{ |
searching dependent graphs…