type github.com/evanw/esbuild/internal/js_parser.JSONOptions
10 uses
github.com/evanw/esbuild/internal/js_parser (current package)
json_parser.go#L15: options JSONOptions
json_parser.go#L153: type JSONOptions struct {
json_parser.go#L158: func ParseJSON(log logger.Log, source logger.Source, options JSONOptions) (result js_ast.Expr, ok bool) {
sourcemap_parser.go#L15: expr, ok := ParseJSON(log, source, JSONOptions{})
github.com/evanw/esbuild/internal/bundler
bundler.go#L257: expr, ok := args.caches.JSONCache.Parse(args.log, source, js_parser.JSONOptions{})
github.com/evanw/esbuild/internal/cache
cache_ast.go#L90: options js_parser.JSONOptions
cache_ast.go#L96: func (c *JSONCache) Parse(log logger.Log, source logger.Source, options js_parser.JSONOptions) (js_ast.Expr, bool) {
github.com/evanw/esbuild/internal/resolver
resolver.go#L911: json, ok := r.caches.JSONCache.Parse(r.log, jsonSource, js_parser.JSONOptions{})
tsconfig_json.go#L53: json, ok := jsonCache.Parse(log, source, js_parser.JSONOptions{
github.com/evanw/esbuild/pkg/api
api_impl.go#L417: expr, ok := js_parser.ParseJSON(logger.NewDeferLog(), source, js_parser.JSONOptions{})
 |
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. |