github.com/evanw/esbuild/internal/js_parser.parser.simplifyUnusedExpr (method)
24 uses
github.com/evanw/esbuild/internal/js_parser (current package)
js_parser.go#L7632: if test := p.simplifyUnusedExpr(s.Test); test.Data != nil {
js_parser.go#L7646: if test := p.simplifyUnusedExpr(s.Test); test.Data != nil {
js_parser.go#L8239: s.Value = p.simplifyUnusedExpr(s.Value)
js_parser.go#L10080: e.Left = p.simplifyUnusedExpr(e.Left)
js_parser.go#L10848: return maybeJoinWithComma(p.simplifyUnusedExpr(e.Test), e.Yes), exprOut{}
js_parser.go#L10871: return maybeJoinWithComma(p.simplifyUnusedExpr(e.Test), e.No), exprOut{}
js_parser.go#L12391: func (p *parser) simplifyUnusedExpr(expr js_ast.Expr) js_ast.Expr {
js_parser.go#L12435: item = p.simplifyUnusedExpr(item)
js_parser.go#L12450: result = maybeJoinWithComma(result, p.simplifyUnusedExpr(item))
js_parser.go#L12464: value := p.simplifyUnusedExpr(*property.Value)
js_parser.go#L12496: result = maybeJoinWithComma(result, p.simplifyUnusedExpr(*property.Value))
js_parser.go#L12501: e.Yes = p.simplifyUnusedExpr(e.Yes)
js_parser.go#L12502: e.No = p.simplifyUnusedExpr(e.No)
js_parser.go#L12506: return p.simplifyUnusedExpr(e.Test)
js_parser.go#L12524: return p.simplifyUnusedExpr(e.Value)
js_parser.go#L12533: return p.simplifyUnusedExpr(e.Value)
js_parser.go#L12541: return maybeJoinWithComma(p.simplifyUnusedExpr(e.Left), p.simplifyUnusedExpr(e.Right))
js_parser.go#L12549: return maybeJoinWithComma(p.simplifyUnusedExpr(e.Left), p.simplifyUnusedExpr(e.Right))
js_parser.go#L12556: e.Right = p.simplifyUnusedExpr(e.Right)
js_parser.go#L12558: return p.simplifyUnusedExpr(e.Left)
js_parser.go#L12573: expr = maybeJoinWithComma(expr, p.simplifyUnusedExpr(arg))
js_parser.go#L12583: expr = maybeJoinWithComma(expr, p.simplifyUnusedExpr(arg))
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |