type github.com/evanw/esbuild/internal/js_ast.ENull
42 uses
github.com/evanw/esbuild/internal/js_ast (current package)
js_ast.go#L407: type ENull struct{}
js_ast.go#L651: func (*ENull) isExpr() {}
js_ast.go#L720: case *ENull, *EUndefined:
github.com/evanw/esbuild/internal/js_parser
js_parser.go#L532: case *js_ast.ENull:
js_parser.go#L587: case *js_ast.ENull:
js_parser.go#L588: _, ok := right.Data.(*js_ast.ENull)
js_parser.go#L644: case *js_ast.ENull, *js_ast.EUndefined, *js_ast.EString, *js_ast.EBoolean, *js_ast.ENumber, *js_ast.EBigInt:
js_parser.go#L669: case *js_ast.ENull, *js_ast.EUndefined:
js_parser.go#L716: case *js_ast.ENull, *js_ast.EUndefined:
js_parser.go#L779: case *js_ast.ENull:
js_parser.go#L804: case *js_ast.ENull:
js_parser.go#L834: case *js_ast.ENull, *js_ast.EUndefined, *js_ast.EBoolean, *js_ast.ENumber, *js_ast.EBigInt, *js_ast.EString:
js_parser.go#L890: case *js_ast.ENull:
js_parser.go#L891: _, ok := right.(*js_ast.ENull)
js_parser.go#L2667: return js_ast.Expr{Loc: loc, Data: &js_ast.ENull{}}
js_parser.go#L7884: if _, ok := binary.Right.Data.(*js_ast.ENull); ok && p.exprCanBeRemovedIfUnused(binary.Left) && valuesLookTheSame(binary.Left.Data, e.No.Data) {
js_parser.go#L7889: if _, ok := binary.Left.Data.(*js_ast.ENull); ok && p.exprCanBeRemovedIfUnused(binary.Right) && valuesLookTheSame(binary.Right.Data, e.No.Data) {
js_parser.go#L7895: if _, ok := binary.Right.Data.(*js_ast.ENull); ok && p.exprCanBeRemovedIfUnused(binary.Left) && valuesLookTheSame(binary.Left.Data, e.Yes.Data) {
js_parser.go#L7900: if _, ok := binary.Left.Data.(*js_ast.ENull); ok && p.exprCanBeRemovedIfUnused(binary.Right) && valuesLookTheSame(binary.Right.Data, e.Yes.Data) {
js_parser.go#L8853: case *js_ast.ENull:
js_parser.go#L8854: valueFunc = func() js_ast.Expr { return js_ast.Expr{Loc: loc, Data: &js_ast.ENull{}} }
js_parser.go#L9708: if _, ok := a.Right.Data.(*js_ast.ENull); ok {
js_parser.go#L9716: if _, ok := b.Right.Data.(*js_ast.ENull); ok {
js_parser.go#L9834: case *js_ast.ENull, *js_ast.ESuper,
js_parser.go#L9982: args = append(args, js_ast.Expr{Loc: expr.Loc, Data: &js_ast.ENull{}})
js_parser.go#L10115: e.Right.Data = &js_ast.ENull{}
js_parser.go#L10157: e.Right.Data = &js_ast.ENull{}
js_parser.go#L11054: case *js_ast.EBoolean, *js_ast.ENull, *js_ast.EUndefined, *js_ast.ENumber,
js_parser.go#L11097: return js_ast.Expr{Loc: arg.Loc, Data: &js_ast.ENull{}}
js_parser.go#L11228: return js_ast.Expr{Loc: arg.Loc, Data: &js_ast.ENull{}}
js_parser.go#L11348: return js_ast.Expr{Loc: arg.Loc, Data: &js_ast.ENull{}}
js_parser.go#L12264: case *js_ast.ENull, *js_ast.EUndefined, *js_ast.EMissing, *js_ast.EBoolean, *js_ast.ENumber, *js_ast.EBigInt,
js_parser.go#L12393: case *js_ast.ENull, *js_ast.EUndefined, *js_ast.EMissing, *js_ast.EBoolean, *js_ast.ENumber, *js_ast.EBigInt,
js_parser_lower.go#L325: forwardedArgs = js_ast.Expr{Loc: bodyLoc, Data: &js_ast.ENull{}}
js_parser_lower.go#L513: case *js_ast.ENull, *js_ast.EUndefined:
js_parser_lower.go#L721: Right: js_ast.Expr{Loc: loc, Data: &js_ast.ENull{}},
js_parser_lower.go#L871: Right: js_ast.Expr{Loc: loc, Data: &js_ast.ENull{}},
js_parser_lower.go#L2321: case *js_ast.ENull, *js_ast.EUndefined, *js_ast.EBoolean, *js_ast.ENumber,
json_parser.go#L46: return js_ast.Expr{Loc: loc, Data: &js_ast.ENull{}}
github.com/evanw/esbuild/internal/js_printer
js_printer.go#L1382: case *js_ast.ENull:
github.com/evanw/esbuild/pkg/api
api_impl.go#L426: case *js_ast.ENull:
api_impl.go#L427: fn = func(config.DefineArgs) js_ast.E { return &js_ast.ENull{} }
 |
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. |