go/ast.EmptyStmt.Implicit (field)

7 uses

	go/ast (current package)
		ast.go#L611: 		Implicit  bool      // if set, ";" was omitted in the source
		ast.go#L780: 	if s.Implicit {

	go/parser
		parser.go#L2259: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
		parser.go#L2263: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L1178: 	if x.Implicit != false {
		encode_ast.gen.go#L1180: 		e.EncodeBool(x.Implicit)
		encode_ast.gen.go#L1205: 			x.Implicit = d.DecodeBool()