MCPcopy Index your code
hub / github.com/valyala/quicktemplate / ParseNoLineComments

Function ParseNoLineComments

parser/parser.go:37–39  ·  view source on GitHub ↗

ParseNoLineComments is the same as Parse, but does not write line comments.

(w io.Writer, r io.Reader, filename, pkg string)

Source from the content-addressed store, hash-verified

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

Callers 1

TestParseNoLineCommentsFunction · 0.85

Calls 1

parseFunction · 0.85

Tested by 1

TestParseNoLineCommentsFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…