github.com/evanw/esbuild/internal/js_parser.parser.parseProperty (method)

9 uses

	github.com/evanw/esbuild/internal/js_parser (current package)
		js_parser.go#L1718: func (p *parser) parseProperty(kind js_ast.PropertyKind, opts propertyOpts, errors *deferredErrors) (js_ast.Property, bool) {
		js_parser.go#L1776: 		return p.parseProperty(js_ast.PropertyNormal, opts, errors)
		js_parser.go#L1805: 						return p.parseProperty(js_ast.PropertyGet, opts, nil)
		js_parser.go#L1811: 						return p.parseProperty(js_ast.PropertySet, opts, nil)
		js_parser.go#L1819: 						return p.parseProperty(kind, opts, nil)
		js_parser.go#L1825: 						return p.parseProperty(kind, opts, nil)
		js_parser.go#L1831: 						return p.parseProperty(kind, opts, nil)
		js_parser.go#L3049: 				if property, ok := p.parseProperty(js_ast.PropertyNormal, propertyOpts{}, &selfErrors); ok {
		js_parser.go#L4861: 		if property, ok := p.parseProperty(js_ast.PropertyNormal, opts, nil); ok {