const github.com/evanw/esbuild/internal/js_ast.LCompare
20 uses
github.com/evanw/esbuild/internal/js_ast (current package)
js_ast.go#L44: LCompare
js_ast.go#L204: {"<", LCompare, false},
js_ast.go#L205: {"<=", LCompare, false},
js_ast.go#L206: {">", LCompare, false},
js_ast.go#L207: {">=", LCompare, false},
js_ast.go#L208: {"in", LCompare, true},
js_ast.go#L209: {"instanceof", LCompare, true},
github.com/evanw/esbuild/internal/js_parser
js_parser.go#L3714: if level >= js_ast.LCompare {
js_parser.go#L3718: left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpLt, Left: left, Right: p.parseExpr(js_ast.LCompare)}}
js_parser.go#L3721: if level >= js_ast.LCompare {
js_parser.go#L3725: left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpLe, Left: left, Right: p.parseExpr(js_ast.LCompare)}}
js_parser.go#L3728: if level >= js_ast.LCompare {
js_parser.go#L3732: left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpGt, Left: left, Right: p.parseExpr(js_ast.LCompare)}}
js_parser.go#L3735: if level >= js_ast.LCompare {
js_parser.go#L3739: left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpGe, Left: left, Right: p.parseExpr(js_ast.LCompare)}}
js_parser.go#L3904: if level >= js_ast.LCompare || !p.allowIn {
js_parser.go#L3917: left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpIn, Left: left, Right: p.parseExpr(js_ast.LCompare)}}
js_parser.go#L3920: if level >= js_ast.LCompare {
js_parser.go#L3934: left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpInstanceof, Left: left, Right: p.parseExpr(js_ast.LCompare)}}
js_parser.go#L3938: if p.options.ts.Parse && level < js_ast.LCompare && !p.lexer.HasNewlineBefore && p.lexer.IsContextualKeyword("as") {
 |
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. |